JSON/RSS 到 NSDictionary
我想知道 Objective-C 中是否有任何库可以自动将 JSON 结果转换为 NSDictionary 数组。
换句话说,一些库可以解析 JSON 并为我制作 NSDictionary 数组并填充结果。
I was wondering, if there is any library in Objective-C which can convert JSON result into an array of NSDictionary automatically.
In other words, some library which can parse the JSON and make and NSDictionary array for me filled with results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的!
您可以使用 Json 框架(例如,在 viewController 中包含 JSON.h ),并且只需一步即可获得数组:
Yes!
You can use Json framework (inlude JSON.h in your viewController for example ), and you obtain your Array in only one step :
试试这个
http://code.google.com /p/json-framework/source/browse/trunk/Tests/Examples.m
文档在这里
http://json-framework.googlecode.com/svn/trunk/documentation /functions.html
Try this
http://code.google.com/p/json-framework/source/browse/trunk/Tests/Examples.m
The docs to that is here
http://json-framework.googlecode.com/svn/trunk/documentation/functions.html