如何在 iPhone 中将 JSON 数据转换为对象
最近我发现 JSON 可以用来向 iPhone 发送数据。
在我的应用程序中,服务器之间有很多通信,因此我在不同的地方构造了很多对象(类)。目前,我正在根据从 json 获取的数据手动构建我的类。
在我们知道从服务获取的对象信息之后,是否有一个框架或源代码可以自动执行此转换。我可以传递类结构,它将从 json 数据创建这些对象的数组。
Possible Duplicate:
How to get and parse JSON using objective C?
Recently I have discovered JSON can be used to send data to iPhone.
In my application there is lot of communication between the server so I construct lot of objects (classes) in various places. Currently I am manually constructing my classes from the data I get from json.
Is there a framework or source code that does this conversion automatically after all we know object information we get from the service. I can pass the class structure and it will create a Array of those objects from json data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是:
http://code.google.com/p/json-framework/
导入框架,发送 JSON 字符串
-[NSString JSONValue]
,您将得到一个NSDictionary
或NSArray
。Yes:
http://code.google.com/p/json-framework/
Import the framework, send the JSON string
-[NSString JSONValue]
and you'll get back either anNSDictionary
or anNSArray
.