childContext 和 parentContext 都是“NSMainQueueConcurrencyType”
[childContext performBlock:^(void) {
[childContext save:NULL];
[parentContext performBlock:^(void) {
[parentContext save:NULL];
// Why is objectID for the inserted NSManagedObject still a temporary one here?
}];
}];
问题:
- 这是保存子上下文和父上下文的正确方法吗
- 为什么保存后插入的NSManagedObject的objectID还是临时的?