在过去,我已经成功实现了从我的数据模型的版本1到版本2的自动迁移.现在,使用SDK 3.1.3,从版本2迁移到版本3失败,并出现以下错误:
未解决的错误错误域= NSCocoaErrorDomain代码= 134110 UserInfo = 0x5363360“操作无法完成.(Cocoa error 134110.)”,{
NSUnderlyingError =错误域= NSCocoaErrorDomain代码= 256 UserInfo = 0x53622b0“操作无法完成.(可可错误256.)”;
reason =“首次通过迁移后无法保存新商店.”;
}
我尝试使用NSMigratePersistentStoresAutomaticallyOption和NSInferMappingModelAutomaticallyOption进行自动迁移,并且仅使用NSMigratePersistentStoresAutomaticallyOption进行迁移,提供从v2到v3的映射模型.
我看到记录了上面的错误,并且应用程序中没有可用的对象.但是,如果我退出应用程序并重新打开它,一切就绪并且正常工作.
我使用的核心数据方法如下
- (NSManagedObjectModel *)managedObjectModel {
if (managedObjectModel != nil) {
return managedObjectModel;
}
NSString *path = [[NSBundle mainBundle] pathForResource:@"MYAPP" ofType:@"momd"];
NSURL *momURL = [NSURL fileURLWithPath:path];
managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:momURL];
return managedObjectModel;
}
- (NSManagedObjectContext *) managedObjectContext {
if (managedObjectContext != nil) {
return managedObjectContext;
}
NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
if (coordinator != nil) {
managedObjectContext = [[NSManagedObjectContext alloc] init];
[managedObjectContext setPersistentStoreCoordinator: coordinator];
}
return managedObjectContext;
}
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
if (persistentStoreCoordinator != nil) {
return persistentStoreCoordinator;
}
NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"MYAPP.sqlite"]];
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,
[NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
NSError *error = nil;
persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];
if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error]) {
// Handle error
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
return persistentStoreCoordinator;
}
在模拟器中,我看到这会生成MYAPP~.sqlite文件和MYAPP.sqlite文件.我试图删除MYAPP~.sqlite文件,但是
BOOL oldExists = [[NSFileManager defaultManager] fileExistsAtPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"MYAPP~.sqlite"]];
总是返回NO.任何线索?难道我做错了什么?
先感谢您.
最佳答案 我也遇到了这个问题,在阅读了尽可能多的Apple文档和网络帖子后,我发现似乎没有答案.在我的情况下,手动迁移也是有效的,但是当我去打开一个新的协调器时,它会给你带来同样的错误.我最终决定回到我最后一个工作版本的数据模型并进行一系列小的更改/版本,看看它打破了自动迁移功能的位置,进一步钻进它,结果却没有.现在我可以毫无问题地添加实体,属性和关系,并自动迁移.您是否有机会删除数据模型的临时版本?