ios - NSRefreshedObjectsKey 的用途
<p><p>在 <code>NSManagedObjectContextObjectsDidChangeNotification</code> 通知中,我有时会得到 <code>NSRefreshedObjectsKey</code> 键。</p>
<p>我了解 <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/CoreDataFramework/Classes/NSManagedObjectContext_Class/NSManagedObjectContext.html#//apple_ref/occ/instm/NSManagedObjectContext/refreshObject%3amergeChanges%3a" rel="noreferrer noopener nofollow">refreshed objects</a>是从持久存储/缓存中重新获取对象。</p>
<p>那是什么导致通知返回刷新的对象呢?对于插入、更新、删除等,这很明显,但是我必须对对象做什么才能使其出现在 <code>NSRefreshedObjectsKey</code> 键中?例如。是不是它可能只是以某种方式被触摸(相同的值写入相同的键)?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果你调用'- (void)refreshObject:(NSManagedObject *)object mergeChanges:(BOOL)flag
' 在一个对象上,该对象会被包含在刷新的对象中。</p>
<p>我们使用多线程管理对象上下文,在合并来自 bg 上下文的更改之前,
我们使用“existingObject”实现所有更改的对象。这也会导致这些对象被包含在内
对于 'NSRefreshedObjectsKey' 键。</p></p>
<p style="font-size: 20px;">关于ios - NSRefreshedObjectsKey 的用途,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12744328/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12744328/
</a>
</p>
页:
[1]