如何使用 iPhone 的 JSON 框架以编程方式生成 JSON
I am creating an application in that I need to send a JSON to the server to get some response.
How to generate JSON using JSON Framework for iPhone?
What are the other possible ways?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建表示要通过 JSON 发送的信息的对象数组或字典。完成此操作后,将
-JSONRepresentation
发送到数组/字典。该方法返回一个 JSON 字符串,然后您将其发送到服务器。例如:
执行上面的代码后,
jsonString
包含:Create an array or dictionary of objects representing the information you want to send via JSON. Having done that, send
-JSONRepresentation
to the array/dictionary. That method returns a JSON string, and you send it to the server.For instance:
After executing the code above,
jsonString
contains:创建一个 NSMutableDictionary 或 NSMutableArray 并用 NSNumbers 和 NSString 填充它。调用
[; JSONRepresentation]
返回 JSON 字符串。例如:
Create an NSMutableDictionary or NSMutableArray and populate it with NSNumbers and NSStrings. Call
[<myObject> JSONRepresentation]
to return a JSON string.eg: