I was wondering if it is possible in general to load images via an URL which is parsed via JSON into an UIImageView in a tableview.
I tried this with no success in the UI and only two images in the log. I don't understand why he is showing me only 2 urls instead of 18.
NSString *bildurl = [[arrayArtikelBild objectAtIndex:indexPath.row] objectForKey:@"bild"];
NSLog(@"BildURL: %@", bildurl);
UIImage *image = [UIImage imageWithContentsOfFile:bildurl];
cell.artikelImage.image = image;
I know that my parsing code work because I let it parse and display other things already (I use NSJSONSerialization).
Thanks in advance.