我想知道通常是否可以通过URL加载图像,该 URL通过JSON解析到UIImageView
.tableview
我在 UI 中尝试了这个但没有成功,日志中只有两个图像。我不明白他为什么只给我看 2 个网址而不是 18 个。
NSString *bildurl = [[arrayArtikelBild objectAtIndex:indexPath.row] objectForKey:@"bild"];
NSLog(@"BildURL: %@", bildurl);
UIImage *image = [UIImage imageWithContentsOfFile:bildurl];
cell.artikelImage.image = image;
我知道我的解析代码可以工作,因为我已经让它解析和显示其他东西(我使用NSJSONSerialization)。
提前致谢。