本文介绍了两个受管对象上下文可以共享一个持久存储协调器吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

示例:我有一个持久存储协调器,它使用一个持久存储。

Example: I have one persistent store coordinator which uses one single persistent store.

现在有两个受管对象上下文,并且都想使用相同的持久存储。可以只使用相同的持久存储协调器,还是我必须创建NSPersistentStoreCoordinator的两个实例?如果我不得不,我还必须创建两个NSPersistentStore实例?

Now there are two managed object contexts, and both want to use the same persistent store. Could both simply use the same persistent store coordinator, or would I have to create two instances of NSPersistentStoreCoordinator? And if I had to, then: Would I also have to create two NSPersistentStore instances?

推荐答案

文章介绍了此主题:

持久存储协调器设计用于处理多个上下文

A Persistent Store Coordinator is designed to handle multiple contexts

这篇关于两个受管对象上下文可以共享一个持久存储协调器吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 18:57