我无法从 URL 加载图像。我有CollectionViewCell
一个像这样的图像视图设置的子类:
@property (strong, nonatomic) IBOutlet UIImageView *albumCover;
我无法让它从 URL 加载图像。这是我使用的代码:
NSData * imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: song.albumURL]];
cell.albumCover = [[UIImageView alloc] initWithImage:[UIImage imageWithData: imageData]];
同时,这有效:
cell.albumCover.image = [UIImage imageNamed:@"lock.png"];
我知道 URL 连接正在获取正确的图像,因为我正在使用 Fiddler 监视它。那为什么图片不显示呢?