您的位置:首页 > 其它

Core Data修改了Data Model文件后报错

2016-07-13 09:49 369 查看
 报错内容:“The model used to open the store is incompatible with the one used to create the store”

“用于打开仓库的模型与创建仓库的模型不匹配”

出现上述异常的原因是 :我们修改了Data Model文件,增加了新的Entity,包括Attribute属性、Relationship关系等等。

解决办法:

(1) 最简单的办法是,在iOS 5 或者 6的模拟器中,删除App,然后重新运行就可以了。

(2) 第二种办法是使用Data Model 数据模型的版本属性:

给Data Model(也就是被管理对象模型)添加一个新的版本:
在项目导航栏中,选择Data Model 文件;
选择 Editor > Create Model Version 菜单项;
在对话框中,输入Data Model文件的名称,并点击Save按钮;



然后设置 Data Model的当前版本号:
在项目导航栏中,选择Data Model文件;
在File inspector 面板窗口,找到Versioned Core Data Model 节点;
从弹出菜单中,选择当前模板版本号;



如果IOS App 使用到CoreData,并且在上一个版本上有数据库更新(新增表、字段等操作),那在覆盖安装程序时就要进行CoreData数据库的迁移,具体操作如下:
1.选中你的mydata.xcdatamodeld文件,选择菜单editor->Add Model Version  比如取名:mydata2.xcdatamodel

2.设置当前版本 

   选择上级mydata.xcdatamodeld ,在inspector中的Versioned Core Data Model选择Current模版为mydata2
3.修改新数据模型mydata2,在新的文件上添加字段及表
4.删除原来的类文件,重新生成下类。(这一步没有做)
在appdelegate中

NSDictionary
*optionsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES],
                                       NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES],
                                       NSInferMappingModelAutomaticallyOption, nil];
    
if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType 
                                                  configuration:nil 
                                                            URL:storeUrl 
                                                        options:optionsDictionary
                                                          error:&error]) {

          NSLog(@"failed to add persistent store with type to persistent store coordinator");

}

添加 *optionsDictionary,原来options:nil  改成options:optionsDictionary

5.重新编译下程序
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: