核心数据迁移错误Cocoa错误134130无法找到源存储的模型

时间:2015-03-26 22:38:57

标签: ios objective-c core-data core-data-migration

我的应用程序在应用程序商店中存在。我通过更改核心数据模型进行了更新。我在Apple开发网站上关注核心数据光迁移。

  • 在Xcode中添加新版本的模型
  • 更改新模型版本
  • 选择使用模型新版本的选项(新模型版本具有绿色检查)
  • 将sqlite文件添加到持久存储时添加选项

以下是代码:

NSString *momdPath = [[NSBundle mainBundle] pathForResource:@"PropertiesModel" ofType:@"momd"];
    model = [[NSManagedObjectModel alloc] initWithContentsOfURL:[NSURL fileURLWithPath:momdPath]];

//    model = [NSManagedObjectModel mergedModelFromBundles:nil];

    psc = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];

    NSString *path = [self itemArchivePath];
    NSURL *storeURL = [NSURL fileURLWithPath:path];

    NSError *error = nil;
    NSDictionary *options = @{ NSMigratePersistentStoresAutomaticallyOption : @(YES),
                               NSInferMappingModelAutomaticallyOption : @(YES),
                               NSSQLitePragmasOption : @{@"journal_mode" : @"DELETE"}};
    if (![psc addPersistentStoreWithType:NSSQLiteStoreType
                           configuration:nil
                                     URL:storeURL
                                 options:options
                                   error:&error]) {
        CLS_LOG(@"store URL: %@ \n options: %@ \n error: %@",storeURL,options,error);
        [NSException raise:@"Open failed" format:@"Reason: %@, Full Error: %@", [error localizedDescription],error];
    }

    // Create the managed object context
    context = [[NSManagedObjectContext alloc] init];
    [context setPersistentStoreCoordinator:psc];

我一直遇到这个错误,它无法找到我原来的(旧版本)模型。奇怪的是,当我在开发过程中测试它时,它起作用了。我发布到应用程序商店,现在它崩溃了我的所有用户的设备。

Error Domain=NSCocoaErrorDomain Code=134130 "The operation couldn’t be completed. (Cocoa error 134130.)" UserInfo=0x170671dc0 {URL=file:///var/mobile/Containers/Data/Application/68165624-8866-4722-8472-F371A1202A83/Documents/DIYLandLord.data, metadata={
    NSPersistenceFrameworkVersion = 519;
    NSStoreModelVersionHashes =     {
        Contractor = <6e29455a 13768a19 a9a4a2da 1d8d492e b3cc023d bc06cb0d 298b56e1 b44fba9f>;
        Expense = <847aa2e8 da0a2730 4b0a70a2 2051ed2c 09ece5c4 e1a39c10 a42f0aa2 d5b79ad4>;
        InAppPurchase = <51dc7a31 415ba244 9c175d8f e14f6948 7ebec6a3 463d2995 3ad0b60b 8bd06f7d>;
        Owner = <2eaaaa38 ff6c4d19 6bb2621b 91a2c61a 9f5e564e 4703c68c 880f8ab4 4e1d2408>;
        Payment = <e92d19bd 82637935 88cf8493 e0c73ddc d1ba245e 0d1e49e4 8c6bc876 e9a97372>;
        Property = <456365b5 9f1b3cda 92f663ef 5f8b90a1 4dc5842b 20f58a7c 4521f182 f733e99f>;
        Tenant = <f3a92b85 dace78cb ae9cba8f 73419929 6932ca12 4ff97ebf 8e2d7689 da9c242b>;
        Unit = <922b8c16 930cd7b7 05259da0 79ace226 bd379991 955bfc4a 755a72ef 1e5dac4c>;
    };
    NSStoreModelVersionHashesVersion = 3;
    NSStoreModelVersionIdentifiers =     (
        ""
    );
    NSStoreType = SQLite;
    NSStoreUUID = "27CE8843-4E80-4F4A-A728-559465D687F8";
    "_NSAutoVacuumLevel" = 2;
}, reason=Can't find model for source store}

我试图恢复到应用程序商店中最后一个稳定版本的代码库,但我也遇到了核心数据错误&#34;该模型与商店不兼容&#34;或类似的东西。

这让我疯狂。有人可以就这个问题说清楚吗?

修改 我的应用可以将核心数据文件备份到Dropbox。它备份sqlite文件和-shm和-wal文件。如果我删除我的应用程序并在应用程序商店下载当前版本,从dropbox恢复3个文件,转到使用核心数据的任何屏幕,它将崩溃。

我可以通过简单的方法从sqlite导出数据并使用新模型将其导入核心数据吗?

1 个答案:

答案 0 :(得分:0)

我能够通过结帐提交方式获取正确的旧数据模型并解决问题。谢谢大家