可以识别(在运行时)NSManagedObjects 已插入到 NSManagedObjectContext (即 inserted == YES )但具有从来没有save d到目前为止的上下文存储。
我最初认为他们的 objectID 可能仍然是 nil ,但事实并非如此。
更新 我进行了一个快速实验,看看检查 temporaryID (参见 accepted answer )是否也适用于嵌套 MOC。这表明不可以:保存子 MOC 只会向上推一层(即到父 MOC,但不是到更上一层的持久存储),因此新插入的 MOC 的对象 ID 仍然是临时的。在这种情况下,确定一个 MO 在子 MOC 中是否是新的并且从未保存(甚至没有保存到父 MOC)的一种方法显然是检查 [child objectRegisteredForID: object.objectID] && ![parent objectRegisteredForID: object.objectID] 代替。
Best Answer-推荐答案 strong>
您可以使用 temporaryID property NSManagedObjectID :
YES if the receiver is temporary, otherwise NO. Most object IDs return
NO. New objects inserted into a managed object context are assigned a
temporary ID which is replaced with a permanent one once the object
gets saved to a persistent store.
示例用法:
if(object.objectID.isTemporaryID) {
//the object has not been saved yet
}
关于ios - 已插入但尚未保存的 NSManagedObjects?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28011604/
|