JSON 和嵌套 NSDictionary
解析 JSON 响应后,我得到一个 NSDictionary,其中包含其他字典,这些字典是预先未知的某些键的值 (308, 1):
{
"308":{
"id":"308",
.....
},
"1":{
"id":"1",
.....
}
}
由于我不知道键,因此如何在此处使用 valueForKey?如何访问嵌套字典?谢谢!
After parsing a JSON response, I get an NSDictionary containing other dictionaries which are the values for some keys not known in advance (308, 1):
{
"308":{
"id":"308",
.....
},
"1":{
"id":"1",
.....
}
}
How do I use here valueForKey since I dont' know the keys? How to acces the nested dictionaries? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有多种方法可以迭代
NSDictionary
。其中之一:查看 NSDictionary 类参考 了解更多替代方案。
There are several way to iterate over an
NSDictionary
. One of them:Look "Enumerating Dictionaries" section in NSDictionary Class Reference for more alternatives.