我正在使用 Google API 返回一些 JSON,我已使用 JSON 框架(Stig B - Google Code)将其转换为它们的 Objective C 类型。
我现在有这样的结构:
responseData
results
[0]
title = "Stack Overflow"
cursor
我如何访问嵌套数组results
以获取title
值(我猜是字典)?
我试过这个但没有成功:
for (NSString *key in [jsonObjects objectForKey:@"responseData"]) {
NSLog(@"%@",key);
for (NSString *element in [key valueForKey:@"results"]) {
NSLog(@"%@",element);
}
}
外部循环将打印出数组的名称,results
这样cursor
就可以了,但是对于内部循环,我得到了一个not key value coding compliant
错误。
谢谢