核心数据:删除/添加对象时出错

有时我的应用程序崩溃时,我想通过下载和parsing一个JSON文件来更新我的核心数据文件。 我得到以下错误:

CoreData:错误:严重的应用程序错误。 核心数据更改处理期间发生exception。 这通常是NSManagedObjectContextObjectsDidChangeNotification观察者中的一个错误。 – [__ NSCFSet addObject:]:试图用userInfo插入nil(null)

如果在迭代过程中更改属性,在迭代中保存NSManagedObjectContext的位置是否重要?

这里是我的代码:

- (void) updateData { dispatch_queue_t serialdQueue; serialdQueue = dispatch_queue_create("update", NULL); dispatch_async(serialdQueue, ^{ [self method1]; }); dispatch_async(serialdQueue, ^{ [self method2]; }); dispatch_async(serialdQueue, ^{ [self method3]; }); dispatch_async(serialdQueue, ^{ [self method4]; }); dispatch_async(serialdQueue, ^{ [self method5]; }); } -(void)method1 { //DOWNLOAD JSON FILE } -(void)method2 //here i add objects to the core data file { @try { for (NSDictionary *jsonActivity in [json objectForKey:@"Activities"]) { //ITERATE THROUGH JSON ACTIVITY ARRAY NSFetchRequest *request = [[NSFetchRequest alloc] init]; NSEntityDescription *entity = [NSEntityDescription entityForName:@"Activity" inManagedObjectContext:self.managedObjectContext]; [request setEntity:entity]; NSPredicate *searchFilter = [NSPredicate predicateWithFormat:@"title == %@", [jsonActivity objectForKey:@"title"]]; // CHECK IF OBJECT FROM JSON FILE ALREADY EXISTS... [request setPredicate:searchFilter]; NSError *error = nil; NSArray *results = [self.managedObjectContext executeFetchRequest:request error:&error]; if (error) { NSLog(@"Error %@", error); abort(); } if ([results count] == 0) { // ADD NEW ACTIVITY IF OLD LIST DOESNT CONTAIN IT Activity *activity = [NSEntityDescription insertNewObjectForEntityForName:@"Activity" inManagedObjectContext:self.managedObjectContext]; activity.title = [jsonActivity objectForKey:@"title"]; activity.remove = [NSNumber numberWithBool:NO]; // REMOVE FLAG = NO BECAUSE NEW OBJECTS AREN'T REMOVED } else { Activity *activity = (Activity*) [results objectAtIndex:0]; activity.remove = [NSNumber numberWithBool:NO]; // IF OBJECT ALREADY EXISTS IT SHOULD BE OBTAINED } AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; [appDelegate saveContext]; // SAVE MO CONTEXT } } @catch (NSException *exception) { NSLog(@"Exception: %@", exception); } } -(void)method3 // DELETE OLD OBJECTS { NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Activity" inManagedObjectContext:self.managedObjectContext]; [fetchRequest setEntity:entityDescription]; NSPredicate *searchFilter = [NSPredicate predicateWithFormat:@"remove == %@", [NSNumber numberWithBool:YES]]; [fetchRequest setPredicate:searchFilter]; NSArray *objectsToDelete = [[NSArray alloc] init]; NSError *error = nil; objectsToDelete = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error]; if (error) { NSLog(@"Error %@", error); abort(); } for (Activity *activity in objectsToDelete) { // DELETE OBJECTS WITH THE PROPERTY REMOVE = YES [self.managedObjectContext deleteObject:activity]; // DELETE ACTIVITY } AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; [appDelegate saveContext]; // SAVE MO CONTEXT } -(void)method4 // CHANGE THE REMOVE PROPERTY TO YES OF ALL OBJECTS { NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Activity" inManagedObjectContext:self.managedObjectContext]; [fetchRequest setEntity:entityDescription]; NSArray *objects = [[NSArray alloc] init]; NSError *error = nil; objects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error]; if (error) { NSLog(@"Error %@", error); abort(); } for (Activity *activity in objects) { activity.remove = [NSNumber numberWithBool:YES]; } AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; [appDelegate saveContext]; // SAVE MO CONTEXT NSLog(@"End Update"); } -(void)method5 //UPDATE UI { //UI UPDATES } 

您不应该在serialQueue上访问您的托pipe对象上下文。 看看NSManagedObjectContext文档的Concurrency部分。

如果在您的代码中您的上下文使用的是NSPrivateQueueConcurrencyTypeNSMainQueueConcurrencyType并发types,则可以使用基于块的方法之一来确保您位于正确的队列中:

 //asyncrhonous [self.managedObjectContext performBlock:^{ //do stuff with the context }]; //syncrhonous [self.managedObjectContext performBlockAndWait:^{ //do stuff with the context }];