您的位置:首页 > 运维架构

CoreDataErrorThe model used to open the store is incompatible with the one used to create the store

2011-08-09 21:21 621 查看
You created some entities with some attributes and wrote some code

Launched the app, probably added some content

Quit the app and added/changed some more entities with attributes

You probably launched the app again and now it's giving you the error

The reason for this is because your new managed object model is trying to use older version of storage (the one first time created when you launched the app).

The quick and dirty fix would be to remove the storage file (somewhere in ~/Library/Application Support/YOUR_APP/) and to launch your app again.

For future reference - if you release an app and in next release the app has changed managed object model - you have to write migrations for it. All this and more is covered in core data programming cookbook in apple documentation.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐