objective-c – 使用NSInferMappingModelAutomaticallyOption更改核心数据中的属性类型

前端之家收集整理的这篇文章主要介绍了objective-c – 使用NSInferMappingModelAutomaticallyOption更改核心数据中的属性类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有我的核心数据存储,我使用标志’NSInferMappingModelAutomaticallyOption’,以便每当我更改核心数据模型,我首先创建一个新的模型版本,并且数据模型的更改将自动迁移.

但是,我需要更改一个实体的属性类型.当我这样做,自动迁移似乎不起作用,当我尝试运行我的应用程序时,我收到一个核心数据错误.

任何设置这种方式可以继续自动模式迁移?

解决方法

轻量级迁移不支持属性类型更改:

For Core Data to be able to generate an inferred mapping model,changes must fit an obvIoUs migration pattern,for example:

  • Simple addition of a new attribute
  • Removal of an attribute
  • A non-optional attribute becoming optional
  • An optional attribute becoming non-optional,and defining a default value
  • Renaming an entity or property

编辑

我假设您正在使用轻量级迁移.但正如斯科特指出的,也许你不是.如果要使用自动迁移(与轻量级迁移不同),您仍然可以通过提供映射模型来实现.在这种情况下:

Core Data will attempt to locate the source and mapping models in the application bundles,and perform a migration.

但这种迁移不会轻量化.核心数据将打开两个存储 – 源和目标 – 并复制内存中的所有实体.所以应用程序消耗的内存取决于商店中的数据量.

原文链接:https://www.f2er.com/c/110309.html

猜你在找的C&C++相关文章