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.
我在我的应用程序中下载了一堆 JSON 对象,并将文件保存为 nsdata 对象:
[responseData writeToFile:appFile atomically:YES];
然后,每当我想要一些 json 对象时,我都会加载该数据、序列化和过滤。到目前为止,它工作得很好。
而且,我将开始从网络下载新类型的 JSON 对象(具有不同的属性)。
¿ 我应该开始使用核心数据,还是继续这样(意思是,这样做没有问题)?
取决于您将要编写和序列化的对象的规模。如果这些对象的数量是动态的……因此可能很多,您可能应该更多地研究 Core Data 作为存储的选项。