Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 iPad 应用程序需要解析一个 10 MB 的 JSON 文件并将其内容保存在 Core Data 中。
考虑大文件大小和内存使用情况,您会推荐使用NSJSONSerialization,还是更愿意选择基于流的JSON 解析器(在这种情况下,您会推荐哪种基于流的解析器)?顺便说一句:该文件是NSJSONSerialization由另一个 iOS 应用程序创建的。
NSJSONSerialization
谢谢!
我会推荐两者,因为NSJSONSerialization有方法JSONObjectWithStream:options:error:。
JSONObjectWithStream:options:error:
您可以改用这个 JSON 解析框架。