jsonからのuiimageについて再度お聞きしたいです。これが私のjsonです
- image {
original: "http://someurl/B777_Tail.jpg",
thumbnail: "http://someurl/thumbnail/B777_Tail.jpg"
},
いや、UItableviewcellのこのメソッドでこれを取得しようとしました
NSString *path=[[[json objectAtIndex:indexPath.row] objectForKey:@"image"]objectForKey:@"thumbnail"];
NSLog(@"%@",path);
UIImage *theImage = [UIImage imageWithContentsOfFile:path];
cell.imageView.image = theImage;
私のコードに何か問題がありますか?UItableviewCell に表示されないためです。