我正在尝试从 url 下载图像并显示到单元格中(示例如下):
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。
为什么会这样?