我正在尝试从网址下载图片并显示到单元格中(下面的示例):
NSURL *url = [NSURL URLWithString:@"http://images.google.com/intl/en_ALL/images/logos/images_logo_lg.gif"];
NSData *data = [NSData dataWithContentsOfURL:url];
[cell.imageView setImage:[UIImage imageWithData:data]];
当我在单元格中显示时,它覆盖整个单元格,比我的UIImageView大。
但如果我在本地显示图像,如下所示:
[cell.imageView setImage:[UIImage imageNamed:@"defaultProfile.png"]];
它非常适合我在单元格中设置的UIImageView。
为什么会这样?
答案 0 :(得分:0)
使用imageview的scaleToFit属性