我需要你在这个问题上逗我一下。这有点伪代码,因为实际情况相当复杂。除非需要,否则我不会以这种方式加载图像。假设我需要。
NSURL *bgImageURL = [NSURL URLWithString:@"https://www.google.com/images/srpr/logo3w.png"];
UIImage *img = [UIImage imageWithData:[NSData dataWithContentsOfURL:bgImageURL]];
[self.anIBOutletOfUIImageView setImage:img];
但我崩溃了
-[__NSCFData _isResizable]: unrecognized selector sent to instance 0x9508c70
如何将 URL 中的图像加载到 NSData 中,然后将该 NSData 加载到 UIImage 中并将该 UIImage 设置为我的 UIImageView 的图像?
再一次,我意识到这听起来像是胡说八道,但由于我正在使用图像缓存系统,我必须这样做:(