NSManagedObjectContextObjectsDidChangeNotification错误

时间:2015-04-03 04:38:16

标签: ios objective-c core-data nsmanagedobjectcontext

如何处理NSManagedObjectContextObjectsDidChangeNotification发生atmanagedObjectContext save:&error错误。

1 个答案:

答案 0 :(得分:0)

如果您使用的是NSPrivateQueueConcurrencyType 或使用concurrencytypemainqueue

//asyncrhonous

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

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