Objective-C json-framework:如何有效地解析日期、空值以及其间的其他所有内容?

发布于 2024-11-30 05:30:57 字数 350 浏览 1 评论 0原文

设想: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落日海湾 2024-12-07 05:30:57

关于处理 Null 值,我建议使用 NSDictionary 上的类别:

TouchJSON,处理与 NSNull

With regards to handling Null values, I suggest making use of a category on NSDictionary:

TouchJSON, dealing with NSNull

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文