使 iPhone 能够获取并解析 JSON?

发布于 2024-11-07 09:45:50 字数 583 浏览 0 评论 0原文

我不知道如何在我的 iPhone 应用程序中使用 output=json;callback=,感谢您的帮助!

位于 tw.money 的 URL。 yahoo.com 返回此 JSON:

{"ResultSet":{"totalResultsAvailable":"0",
              "Error":{"Code":400,
                       "Message":"\u67e5\u8a62\u53c3\u6578\u4e0d\u5408\u6cd5"}
             }
} 

I don't know how to use the output=json;callback= for my iPhone App, appreciate for your help!

This URL at tw.money.yahoo.com returns this JSON:

{"ResultSet":{"totalResultsAvailable":"0",
              "Error":{"Code":400,
                       "Message":"\u67e5\u8a62\u53c3\u6578\u4e0d\u5408\u6cd5"}
             }
} 

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

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

发布评论

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

评论(2

迷迭香的记忆 2024-11-14 09:45:50

如果您得到字符串形式的响应,那么解析起来非常简单 - 它只是变成 NSDictionary 和 NSArray 对象:)

获取 touch-json 框架

NSString *myJsonString = @"{'name':'Bob'}";
NSDictionary *dict = [myJsonString JSONValue];

在字符串上调用 JSONValue 后,字典将包含具有值“Bob”的键“name”。

If you get the response as a string, then it's very simple to parse - it just gets turned into NSDictionary and NSArray objects :)

Get the touch-json framework from github.

NSString *myJsonString = @"{'name':'Bob'}";
NSDictionary *dict = [myJsonString JSONValue];

After calling JSONValue on a string, dict will contain the key "name" that has the value "Bob".

淡莣 2024-11-14 09:45:50

jsonkit

NSDictionary *listings = [[content objectFromJSONString] valueForKey:@"ResultSet"];

jsonkit

NSDictionary *listings = [[content objectFromJSONString] valueForKey:@"ResultSet"];

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