需要一些帮助来访问 iPhone 的 JSON 数据
免责声明:我是 JSON 新手。
我有一个网站,提供 JSON 格式的数据,我正在构建一个 iPhone 应用程序来访问该数据。我遇到的问题实际上不是应用程序本身,而是访问某些 JSON 数据的语法。
我在访问 Post [ ] 部分中的数据时没有任何问题,但我想访问 Attachments >图片> wptouch-新缩略图> url
我知道您通常会使用点语法访问数据,但通过我所尝试的一切,我无法选择 Post[] 部分之外的任何内容。
这非常简单,我通过帖子从服务器获取内容,并将它们添加到 NSStrings 或 UIImage(如果是在 UITableView 中使用图像)。
我已经完成了所有这些工作,但是我似乎无法访问附件下的任何内容。我尝试为附件创建一个不同的 NSDictionary,但这不起作用。
再次记住,我对 JSON/访问其中的数据非常陌生。
任何帮助将不胜感激!
Disclaimer: I'm new to JSON.
I have a website that offers up it's Data in JSON format and I'm in the process of building an iPhone App to access that data. The problem I have is not actually with the app itself but rather the syntax to access some of the JSON data.
I don't have any issue accessing the data in the Post [ ] Section, however I want to access Attachments > Images > wptouch-new-thumbnail > url
I know you usually would access the data with a dot syntax but with everything I have tried I have been unable to select anything outside of the Post[] section.
it's pretty simple I take what I get from the server through posts and add them to NSStrings or UIImage in the case of the images for use in a UITableView.
I have all of that working however I can't seem to access anything under attachments. I tried to make a different NSDictionary for attachments but that did not work.
Again remember I'm very new to JSON / Accessing data within it.
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
NSMutableData
设为jsonMutableData
而不是 NSMutableString。在连接
dedreceiveresponse
中,初始化jsonMutableData
,然后,Make
NSMutableData
asjsonMutableData
instead of NSMutableString.in connection
dedreceiveresponse
, initializejsonMutableData
then,