应用程序更新后保留核心数据

发布于 2024-10-24 12:27:16 字数 123 浏览 3 评论 0原文

我正在使用核心数据来存储用户选择的收藏夹。我想知道如果我发送应用程序更新,在用户更新应用程序后如何保留收藏夹的数据?

我读过您可以使用版本控制,但我不确定这是否是正确的方法。

任何帮助将不胜感激!谢谢

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

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

发布评论

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

评论(1

梦醒时光 2024-10-31 12:27:16

如果您的应用程序维护相同的包标识符,并且您不复制核心数据存储文件,则保留它。

如果您更改了核心数据模型,那么您确实需要担心版本控制。根据更改,您可能需要编写将旧存储中的数据迁移到新格式的规则。正如您可能经历过的那样,如果您更改数据结构并且不迁移(或擦除现有数据),则会崩溃。

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.

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