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.
所以我在 xcode 数据模型中为实体添加了一个新属性。基本上就像我在 MySQL 中向表中添加一个新列一样。然而,结果并不像 MySQL/web 开发中那样漂亮。
当我运行构建时,它会抛出“找不到源存储模型”。
在 xcode 中向现有实体添加新属性时,我需要做什么(步骤?)?
如果你有一个数据模型并且你已经使用这个模型保存了数据,那么会在~/Library/<'application name'>/目录中为你生成一个 .storedata 文件 (xml)(用于可可应用程序)。完成此操作后,如果您更改数据模型(例如添加实体),.storedata 文件将不再与数据模型兼容。因此,要么您需要不同版本的数据模型,要么作为临时解决方案,您可以继续从我之前提到的目录中删除您的 .storedata 文件。但这将删除您之前保存的所有数据。
~/Library/<'application name'>/