iPhone JSON 检索值
你好 我正在传递一个 api 并从服务器获取响应
[{\"Latitude\":\"34\",\"Longitude\":\"45\"},{\"Latitude\":\"46\",\"Longitude\":\"45\"},{\"Latitude\":\"73\",\"Longitude\":\"54\"}]
,但是我不知道如何将从服务器获得的响应分解为数组,以便我可以存储值并使用它。
Hi
I am passing one api and getting the response from the server
[{\"Latitude\":\"34\",\"Longitude\":\"45\"},{\"Latitude\":\"46\",\"Longitude\":\"45\"},{\"Latitude\":\"73\",\"Longitude\":\"54\"}]
however i didn't know how to break the response which i have got from server into array, so that i can store the values and used it..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是标准的 JSON。有很多图书馆就是这样做的。我会推荐 SBJSON。
http://code.google.com/p/json-framework/
It's standard JSON. Lots of libraries out there that do exactly that. I would recommend SBJSON.
http://code.google.com/p/json-framework/
花在 MarPowell 的答案上 - 这是 JSON,请查看 JSON 网站 - http://www.json.org/
另外,如果您想在 iPhone sdk 中解析它,请查看这个很棒的教程 - http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/
to expend on MarPowell answer - this is JSON check out the JSON website - http://www.json.org/
also if you wants to parse it in iPhone sdk check out this great tutorial - http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/