【发布时间】:2015-10-12 23:56:23
【问题描述】:
我正在使用 Edmunds API 返回某个年份的车辆制造商 JSON 字符串。
生成的 NSDictionary 如下所示:
makes = (
{
id = 200002038;
models = (
{ // not relevant
}
);
name = Acura;
niceName = acura;
},
{
id = 200001769;
models = (
{ // not relevant
}
);
name = "Aston Martin";
niceName = "aston-martin";
},
这本字典中有更多的值...如何遍历字典以检索每个“名称”值?
【问题讨论】:
标签: ios objective-c nsdictionary