我正在努力解决以下问题:
我有一个返回嵌套 JSON 片段的 API。(我使用 NSJSONSeralization 来解析它)
例如:
{ "thing" = 1,
"Other thing" = 2,
"ParentFromList": [{
"IT" = 3,
"SecondIT" = 4
}
我如何使用 IT 和 Second it?
我试过了:
NSDictionary *thingy = [[jsonOutput objectForKey:@"ParentFromList"] ObjectForKey:@"IT"];
JsonOutput 也是一个字典。但是运行它之后,它失败了:
Unrecognized Selector send to instance.
我不知道如何解决这个问题,感谢帮助。