获取保存的对象:
NSPersistentStoreCoordinator * newPersStoreCoord ;
newPersStoreCoord = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:theDoc.managedObjectModel] ;
NSString * path = [[NSBundle mainBundle] pathForResource:@"preload"
ofType:@"xml"];
NSURL *preloadURL = [NSURL fileURLWithPath:path];
[newPersStoreCoord addPersistentStoreWithType:NSBinaryStoreType
configuration:nil
URL:preloadURL
options:nil
error:NULL] ;
NSManagedObjectContext * auxMOC = [[NSManagedObjectContext alloc] init] ;
[auxMOC setPersistentStoreCoordinator:newPersStoreCoord] ;
将它们复制到您的“活” MOC
[self loadPreloadedDataFromTheMOC:auxMOC
toTheMOC:theDoc.managedObjectContext
forTheDoc:theDoc] ;
在克隆技术的帮助下
- (NSManagedObject *)cloneInContext:(NSManagedObjectContext *)context
withCopiedCache:(NSMutableDictionary *)alreadyCopied
exludeEntities:(NSArray *)namesOfEntitiesToExclude
excludeAttributes:(NSArray *)namesOfAttributesToExclude
{
NSString *entityName = [[self entity] name];
if ([namesOfEntitiesToExclude containsObject:entityName])
{
return nil;
}
NSManagedObject *cloned = [alreadyCopied objectForKey:[self objectID]];
if (cloned != nil)
{
return cloned;
}
//create new object in data store
cloned = [NSEntityDescription insertNewObjectForEntityForName:entityName
inManagedObjectContext:context];
[alreadyCopied setObject:cloned
forKey:[self objectID]];
//loop through all attributes and assign then to the clone
NSDictionary *attributes = [[NSEntityDescription entityForName:entityName
inManagedObjectContext:context] attributesByName];
for (NSString *attr in attributes)
{
if (![namesOfAttributesToExclude containsObject:attr])
{
[cloned setValue:[self valueForKey:attr] forKey:attr];
}
}
//Loop through all relationships, and clone them.
NSDictionary *relationships = [[NSEntityDescription entityForName:entityName
inManagedObjectContext:context] relationshipsByName];
for (NSString *relName in [relationships allKeys])
{
NSRelationshipDescription *rel = [relationships objectForKey:relName];
NSString *keyName = rel.name;
if ([rel isToMany])
{
id sourceSet ;
id clonedSet ;
/*
On gère selon que la relation est ordonnée ou non
*/
if (![rel isOrdered])
{
//get a set of all objects in the relationship
sourceSet = [self mutableSetValueForKey:keyName];
clonedSet = [cloned mutableSetValueForKey:keyName];
}
else
{
sourceSet = [self mutableOrderedSetValueForKey:keyName];
clonedSet = [cloned mutableOrderedSetValueForKey:keyName];
}
NSEnumerator *e = [sourceSet objectEnumerator];
NSManagedObject *relatedObject;
while (relatedObject = [e nextObject])
{
//Clone it, and add clone to set
NSManagedObject *clonedRelatedObject = [relatedObject cloneInContext:context
withCopiedCache:alreadyCopied
exludeEntities:namesOfEntitiesToExclude
excludeAttributes:namesOfAttributesToExclude];
if (clonedRelatedObject)
{
[clonedSet addObject:clonedRelatedObject];
}
}
}
else
{
NSManagedObject *relatedObject = [self valueForKey:keyName];
if (relatedObject != nil)
{
NSManagedObject *clonedRelatedObject = [relatedObject cloneInContext:context
withCopiedCache:alreadyCopied
exludeEntities:namesOfEntitiesToExclude
excludeAttributes:namesOfAttributesToExclude];
if (clonedRelatedObject)
{
[cloned setValue:clonedRelatedObject forKey:keyName];
}
}
}
}
return cloned;
}