以下是基本流程:
创建数据模型的版本化副本。(选择模型,然后编辑器->添加模型版本)
对数据模型的新副本进行更改
将新数据模型的副本标记为当前版本。(单击顶级 xcdatamodel 项,然后在文件检查器中将“版本化数据模型”部分下的“当前”条目设置为您在步骤 1 中创建的新数据模型。
更新您的模型对象以添加 RecipeIngredient 实体。还将配方和成分实体上的成分和配方关系替换为您在步骤 2 中创建的新关系到 RecipeIngredient 实体。(两个实体都添加了这个关系。我叫我的 recipeIngredients)显然,无论您在旧代码中创建从成分到配方的关系,您现在都需要创建一个 RecipeIngredient 对象..但这超出了这个答案的范围。
在模型之间添加一个新映射(文件->新文件...->(核心数据部分)->映射模型。这将为您自动生成几个映射。RecipeToRecipe、IngredientToIngredient 和 RecipeIngredient。
删除 RecipeIngredient 映射。还要删除它为RecipeToRecipe 和IngredientToRecipe 提供的recipeIngredient 关系映射(或您在步骤2 中调用的任何内容)。
将 RecipeToRecipe 映射拖动到映射规则列表中的最后一个。(这很重要,以便我们确保在食谱之前迁移成分,以便我们在迁移食谱时可以将它们链接起来。)迁移将按照迁移规则列表的顺序进行。
为RecipeToRecipe映射“DDCDRecipeMigrationPolicy”设置自定义策略(这将覆盖Recipes对象的自动迁移并为我们提供一个可以执行映射逻辑的钩子。
通过将 NSEntityMigrationPolicy 子类化为 Recipes 来创建 DDCDRecipeMigrationPolicy 以覆盖 createDestinationInstancesForSourceInstance(请参阅下面的代码)。这将为每个食谱调用一次,这将让我们创建食谱对象,以及将其链接到成分的相关食谱成分对象。我们将让成分通过 Xcode 在步骤 5 中自动为我们创建的映射规则自动迁移。
无论您在何处创建持久对象存储(可能是 AppDelegate),请确保将用户字典设置为自动迁移数据模型:
if (![__persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:storeURL
options:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, nil]
error:&error])
{
}
食谱的子类 NSEntityMigrationPolicy
#import <CoreData/CoreData.h>
@interface DDCDRecipeMigrationPolicy : NSEntityMigrationPolicy
@end
*覆盖 DDDCDRecipeMigrationPolicy.m 中的 createDestinationInstancesForSourceInstance *
- (BOOL)createDestinationInstancesForSourceInstance:(NSManagedObject *)sInstance entityMapping:(NSEntityMapping *)mapping manager:(NSMigrationManager *)manager error:(NSError **)error
{
NSLog(@"createDestinationInstancesForSourceInstance : %@", sInstance.entity.name);
//We have to create the recipe since we overrode this method.
//It's called once for each Recipe.
NSManagedObject *newRecipe = [NSEntityDescription insertNewObjectForEntityForName:@"Recipe" inManagedObjectContext:[manager destinationContext]];
[newRecipe setValue:[sInstance valueForKey:@"name"] forKey:@"name"];
[newRecipe setValue:[sInstance valueForKey:@"overview"] forKey:@"overview"];
[newRecipe setValue:[sInstance valueForKey:@"instructions"] forKey:@"instructions"];
for (NSManagedObject *oldIngredient in (NSSet *) [sInstance valueForKey:@"ingredients"])
{
NSFetchRequest *fetchByIngredientName = [NSFetchRequest fetchRequestWithEntityName:@"Ingredient"];
fetchByIngredientName.predicate = [NSPredicate predicateWithFormat:@"name = %@",[oldIngredient valueForKey:@"name"]];
//Find the Ingredient in the new Datamodel. NOTE!!! This only works if this is the second entity migrated.
NSArray *newIngredientArray = [[manager destinationContext] executeFetchRequest:fetchByIngredientName error:error];
if (newIngredientArray.count == 1)
{
//Create an intersection record.
NSManagedObject *newIngredient = [newIngredientArray objectAtIndex:0];
NSManagedObject *newRecipeIngredient = [NSEntityDescription insertNewObjectForEntityForName:@"RecipeIngredient" inManagedObjectContext:[manager destinationContext]];
[newRecipeIngredient setValue:newIngredient forKey:@"ingredient"];
[newRecipeIngredient setValue:newRecipe forKey:@"recipe"];
NSLog(@"Adding migrated Ingredient : %@ to New Recipe %@", [newIngredient valueForKey:@"name"], [newRecipe valueForKey:@"name"]);
}
}
return YES;
}
我会在 Xcode 和示例 Xcode 项目中发布设置的图片,但我似乎还没有任何关于堆栈溢出的声誉点......所以它不会让我这样做。我也会把这个发布到我的博客上。bingosabi.wordpress.com/。
另请注意,Xcode Core Data 模型映射的东西有点不稳定,偶尔需要一个“干净的”、良好的 Xcode 恢复器、模拟器反弹或以上所有方法才能使其正常工作。