如何处理NSManagedObjectContextObjectsDidChangeNotification
发生atmanagedObjectContext save:&error
错误。
答案 0 :(得分:0)
如果您使用的是NSPrivateQueueConcurrencyType 或使用concurrencytypemainqueue
//asyncrhonous
[self.managedObjectContext performBlock:^{
//do stuff with the context
}];
//syncrhonous
[self.managedObjectContext performBlockAndWait:^{
//do stuff with the context
}];