获取 JSON 字典中的所有值,无需通过键访问
JSON 示例:
<代码>[{ "title1":"嘿", "title2":"呵呵", "title3":"哈", "title4":"呼" }]
如何在不使用 valueForKey
的情况下获取值 (hey,hoh,hah,hoo)
?
有人可以指导我吗?
--------------编辑--------------
我使用 JSON 框架。现在我使用 NSDictionary *jsonDict = [string JSONValue];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您的数据位于 NSDictionary 中,请尝试
allValues
。但请记住,NSDictionary 是未排序的,因此值的顺序是未定义的。
Assuming you have your data in an NSDictionary, try
allValues
.Remember however than an NSDictionary is unsorted, so the order of the values is undefined.
正如托德已经说过的,NSDictionary 有一个方法 allValues - 检查 NSDictionary 文档
循环遍历值的一个示例是
再次,这些值将不排序,因为它们来自字典。
As Todd already said, NSDictionary has a method allValues - check the NSDictionary Documentation
An example of looping through the value's is
Again, these values will be unsorted as they are coming from a dictionary.