我正在使用NSOperation
子类导入大量数据并将其保存如下:
- (void)main
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[[NSRunLoop currentRunLoop] addPort:[NSPort port] forMode:NSRunLoopCommonModes];
NSManagedObjectContext *moc = [[NSManagedObjectContext alloc] init];
[moc setPersistentStoreCoordinator:[self persistentStoreCoordinator]];
[moc setUndoManager:nil]; //to make the import more effecient
NSError *error;
for (NSManagedObject *taskInfo in self.tasks) { //self.tasks are the xml returned from a web service
Task *taskDB = [NSEntityDescription insertNewObjectForEntityForName:@"Task"inManagedObjectContext:moc];
taskDB.taskID = [taskInfo valueForKey:@"TaskID"];
taskDB.taskAssignedDate = [taskInfo valueForKey:@"TaskAssignDate"];
taskDB.corporate = [self getCorporate:moc :[[taskInfo valueForKey:@"FacilityInfo"] valueForKey:@"ID"] ];
taskDB.dateTime = [[NSDate date]retain];
taskDB.requestNumber = [taskInfo valueForKey:@"RequestNumber"];
... //there are a lot of other properties for the task table
} //for
[moc save:&error];
[moc reset];
[pool drain], pool = nil;
}
但是managedObjectContext
唯一保存循环中的最后一条记录并且不保存所有记录,但是,如果我将保存代码放入循环中,managedObjectContext
它将按预期保存所有记录。我还尝试通过在循环中设置一个计数器在(10)条记录后进行保存,在一定数量的记录后进行保存,但同样的问题发生了,moc
每 10 次循环运行后保存一条记录。我怎么解决这个问题 ?我希望一次或每 10 次循环运行moc
保存所有记录。
非常感谢。