Objective-C json-framework:如何有效地解析日期、空值以及其间的其他所有内容?
设想: Ruby on Rails 应用程序使用 json-framework 将 JSON 返回到 iOS 应用程序来解析 JSON 并将数据推送到 Core Data 对象。
问题: 从 JSON 中返回的许多属性可以为 null,并且其中很大一部分不是简单的字符串(例如,它们是带有时区、整数、浮点数等的日期时间)。
问题: 处理此类 JSON 最有效的方法是什么? json-framework(或其他东西)是否有任何帮助程序可以使解析此类数据更容易... -或者- ...我只需对每个属性进行 [NSNull null] 检查,如果不为 null 则执行适当的操作转换为 NSDate、NSNumber 或其他什么?
谢谢-wg
Scenario:
Ruby on Rails app that returns JSON to an iOS application using json-framework to parse the JSON and push the data onto Core Data objects.
Problem:
Many of attributes returned from in the JSON can be null and a large number of them are not simple strings (e.g., they are DateTimes with timezones, integers, floats, etc...).
Question:
What is the most efficient way to handle such JSON? Does json-framework (or something else perhaps) have any helpers to make parsing such data easier ... -or- ... do I simply gotta do [NSNull null] checks on each and every attribute and if not null do the appropriate conversion to NSDate, NSNumber or whatever?
Thanks -wg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于处理 Null 值,我建议使用 NSDictionary 上的类别:
TouchJSON,处理与 NSNull
With regards to handling Null values, I suggest making use of a category on NSDictionary:
TouchJSON, dealing with NSNull