-3

我试图在我的 tableViewCell 中解析和显示 json 内容,但是出了点问题。

JSON在这里:http ://bumpee.net/xcode/index.php

-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:webData options:0 error:nil];

    NSArray *arr = [json objectForKey:@"feed"];
    for(NSDictionary *aaa in arr) {
        NSDictionary *one = [aaa objectForKey:@"1"];
        NSString *onePrint= [one objectForKey:@"name"];
        [array addObject:onePrint];
    }

    [[self tableView ] reloadData];
}
4

1 回答 1

2

问题是这arr实际上NSDictionary不是一个NSArray并且当你迭代时

for (NSDictionary *aaa in arr) [...]

你基本上是通过NSString键,而不是值。

于 2013-10-06T13:49:56.660 回答