我正在创建UIImageView
使用界面生成器。它的帧大小是 (320,67)。我想在 imageView 上显示图像。我正在从网络上获取图像。问题是从网络获取的图像被拉伸以显示在图像视图上......这是我的代码
NSData *imageData=[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.isco.com/webproductimages/appBnr/bnr1.jpg"]];
imageView.image = [UIImage imageWithData:imageData];
谁能告诉我如何显示适合在 imageView 上显示的图像????