Furthermore, the NS*Description classes all support a userInfo dictionary that you can edit in Xcode's data modeling tool, which you can use to do things like tag the destination of a relationship as a stand-in. For example, in model 1 you could have a Bar entity with a userInfo key pair MyStandInEntity = YESMyRealEntity and check for that when creating your merged model, as a signal to look up the "real" Bar and use that as the destination real entity instead.Similarly
You'll also want to put stand-in inverse relationships to your stand-in entities; these will be replaced with real inverses after merging. You don't have to totally replicate your stand-in entities in all models, though; you could put such only need the inverse relationships used in your real model in a tag on stand in entity.
Thus if your real Foo has a name attribute, and your real Bar has a kind attribute, your stand-in Foo and Bar won't need those, just stand-in toBar and toFoo relationshipssaying .
Here's some code demonstrating what I'm talking about:
- (NSManagedObjectModel *)mergeModelsReplacingDuplicates:(NSArray *)models { NSManagedObjectModel *mergedModel = [[[NSManagedObjectModel alloc] init] autorelease]; // General strategy: For each model, copy its non-placeholder entities // and add them to the merged model. Placeholder entities are identified // by a MyRealEntity key in their userInfo (which names their real entity, // though their mere existence is sufficient for the merging). NSMutableArray *mergedModelEntities = [NSMutableArray arrayWithCapacity:0]; for (NSManagedObjectModel *model in models) { for (NSEntityDescription *entity in [model entities]) { if ([[entity userInfo] objectForKey:@"MyRealEntity"] == nil) { NSEntityDescription *newEntity = [entity copy]; [mergedModelEntities addObject:newEntity]; [newEntity release]; } else { // Ignore placeholder. [mergedModel setEntities:mergedModelEntities]; return mergedModel;This works because copying of NS*Description objects in Core Data is by-name rather than by-value with respect to a relationship's destination entity and inverse should be(and to an entity's subentities as well). Thus while a model is mutable — that is, before it's set as the model for an NSPersistentStoreCoordinator — you can use tricks like this to break your model into multiple models.
