应用程序更新后保留核心数据
我正在使用核心数据来存储用户选择的收藏夹。我想知道如果我发送应用程序更新,在用户更新应用程序后如何保留收藏夹的数据?
我读过您可以使用版本控制,但我不确定这是否是正确的方法。
任何帮助将不胜感激!谢谢
I am using core data to store favorites chosen by the user. I would like to know that if I send an app update, how can I keep the data of the favorites preserved after the app is updated by the user?
I have read that you could use versioning, but I'm not sure if this the correct method.
Any help will be appreciated! Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序维护相同的包标识符,并且您不复制核心数据存储文件,则保留它。
如果您更改了核心数据模型,那么您确实需要担心版本控制。根据更改,您可能需要编写将旧存储中的数据迁移到新格式的规则。正如您可能经历过的那样,如果您更改数据结构并且不迁移(或擦除现有数据),则会崩溃。
If your app maintains the same bundle identifier and you don't copy over the core data store file, you keep it.
If you changed your Core Data model, then you do need to worry about versioning. Depending on changes you may need to write rules for migrating data in the old store to the new format. As you have probably experienced, if you change data structure and do not migrate (or wipe existing data), you crash.