下载数据Json图片

时间:2011-07-20 19:06:59

标签: iphone xcode

这是我的代码的一部分

NSURL *jsonURL = [NSURL URLWithString:@"http://*****.php"];

NSString *donneeJson = [[NSString alloc] initWithContentsOfURL:jsonURL];

self.pseudoOnline = [donneeJson JSONValue];

NSDictionary *json2 = [pseudoOnline valueForKey: @"photo"];

NSLog(@"adresse photo%@",[pseudoOnline valueForKey: @"photo"]);

NSString *url = [[pseudoOnline valueForKey: @"photo"]objectAtIndex:0];  

NSLog(@"adresse photo%@",url    );

adresse photo(
    "http://************/XWsmG18O27.jpg",
    "http://************/Wz0ab6oIxU.jpg",
    "http://***********/9yKzQrpO59.jpg",
    "http://************/l2rbNeIK8a.jpg")


UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url]]];

我如何下载所有图片因为我只拍照片索引0!

THKS

THKS

1 个答案:

答案 0 :(得分:0)

ads2是NSArray的一个实例,而不是NSDictionary。 NSArray不是键值集合,不响应valueForKey: