NSString *responseString = [request responseString];
NSDictionary *dictionary=[responseString JSONValue];
NSArray *dic=[dictionary valueForKey:@"data"];
for (int a=0; a<dic.count; a++) {
NSInteger z=(NSInteger)a;
NSLog(@"%@",[[dic objectAtIndex:a] objectForKey:@"nom"]);
}
这是文件
{"data":[ "",{"id":"1","nom":"hello","message":["",{"id":1,"nom":"dad"}]}, {"id":"2","nom":"hi","message":["",{"id":"1","nom":"marie"},{"id":"2","nom":"bob"}]} ] }
当我想解析我的 json 文件时,我看到了变量“a”的问题,objectAtIndex
因为它是一个整数,但如果我尝试值 5 为例,它的工作就完美了。
你能帮我吗。