NSError *error = nil;
NSURL *url = [NSURL URLWithString:[imageLinks objectAtIndex:0]];
NSData *tdata = [NSData dataWithContentsOfURL:url options:NSDataReadingUncached error:&error];
if (error) {
NSLog(@"%@", [error localizedDescription]);
}else {
// no error, this one is being called within my app
NSLog(@"Data loaded successfully");
}
self.pictureView1.image = [UIImage imageWithData:tdata];
我有一个 jpeg 文件,我可以确认 URL 内容已成功收集,但是当我尝试将图像数据放入UIImage
我的应用程序时失败。我想知道是否有任何检查 NSData 以确认它可用于UIImage
.
我也不知道是什么导致了这个失败,以及如何防止它。任何帮助,将不胜感激。