获取 JSON 字典中的所有值,无需通过键访问

发布于 2024-11-09 06:28:16 字数 305 浏览 0 评论 0 原文

JSON 示例:

<代码>[{ "title1":"嘿", "title2":"呵呵", "title3":"哈", "title4":"呼" }]

如何在不使用 valueForKey 的情况下获取值 (hey,hoh,hah,hoo)

有人可以指导我吗?

--------------编辑--------------

我使用 JSON 框架。现在我使用 NSDictionary *jsonDict = [string JSONValue];

JSON Example:

[{
"title1":"Hey",
"title2":"Hoh",
"title3":"Hah",
"title4":"Hoo"
}]

How can I get value (hey,hoh,hah,hoo) without using valueForKey?

Could anyone guide me please?

--------------Edit--------------

I use JSON-Framework. And Now I use NSDictionary *jsonDict = [string JSONValue];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沫离伤花 2024-11-16 06:28:16

假设您的数据位于 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.

仄言 2024-11-16 06:28:16

正如托德已经说过的,NSDictionary 有一个方法 allValues - 检查 NSDictionary 文档

循环遍历值的一个示例是

for(NSString *value in [jsonDict allValues]){
NSLog(@"Found Value %@",value);
}

再次,这些值将不排序,因为它们来自字典。

As Todd already said, NSDictionary has a method allValues - check the NSDictionary Documentation

An example of looping through the value's is

for(NSString *value in [jsonDict allValues]){
NSLog(@"Found Value %@",value);
}

Again, these values will be unsorted as they are coming from a dictionary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文