2

背景:

我目前在应用商店中有一个使用核心数据数据存储的应用 - 与 iCloud。

我已将字段添加到实体和新实体。

我已经设置了自动迁移,我认为这一切都有效。(没有崩溃)

有没有办法告诉它100%有效?我认为这是应对这种微小变化的最佳方法?我不想发布一些用户会崩溃的机会。

实现自动迁移的代码如下:

NSURL *storeUrl = [NSURL fileURLWithPath:storePath];
// this needs to match the entitlements and provisioning profile
NSURL *cloudURL = [fileManager URLForUbiquityContainerIdentifier:nil];
NSString* coreDataCloudContent = [[cloudURL path] stringByAppendingPathComponent:@"iLearn_LessonPlans"];
cloudURL = [NSURL fileURLWithPath:coreDataCloudContent];

//  The API to turn on Core Data iCloud support here.
NSDictionary* options = [NSDictionary dictionaryWithObjectsAndKeys:@"com.danielanderton.iLearn_LessonPlans.1",    NSPersistentStoreUbiquitousContentNameKey, cloudURL, NSPersistentStoreUbiquitousContentURLKey, [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption,nil];

NSError *error = nil;

[psc lock];
if (![psc addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error]) {
              NSLog(@"error");
}
[psc unlock];
4

0 回答 0