我正在使用Web服务返回我放入tableviewcell的图像。我可以在iPhone模拟器上看到这些图像,但它们不会出现在设备上。以下是获取图片的代码:
NSString *imgurlString = bestPageDictionary[@"image_url"];
NSURL *imageURL = [NSURL URLWithString:imgurlString];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage *zeeimageForCell = [UIImage imageWithData:imageData];
[dVC setItemDisplayImage:zeeimageForCell];
答案 0 :(得分:0)
因为您正在通过调用URL下载图像。可能是连接丢失或数据丢失。请使用任何第三方(例如EGOImageLoading UIImageView或sdWebImageview。
下载