如何向 NSManagedObject 添加观察者?
在 NSManagedObject
上注册观察者的首选方法是什么(因为 Core Data“拥有”托管对象的生命周期)?
我是否正确,执行此操作的方法是监听 NSManagedObjectContextObjectsDidChange-Notification
并为 NSInsertedObjectsKey
和 调用
为 addObserver:...
删除观察者:...NSDeletedObjectsKey
?
What is the preferred approach to registering observers on an NSManagedObject
(since Core Data "'owns' the lifecycle" of managed objects)?
Am I correct that the way to do this is to listen for NSManagedObjectContextObjectsDidChange-Notification
and call addObserver:...
for NSInsertedObjectsKey
and removeObserver:...
for NSDeletedObjectsKey
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了在 MO 的整个生命周期中对其进行观察,请在它们存在时添加观察者,使用
awakeFromInsert
和awakeFromFetch
。In order to observe MOs throughout their lifecycles, add observers when they come into existence, with
awakeFromInsert
andawakeFromFetch
.是的,你是对的。直接观察 MO 会导致麻烦,因为您已经在问题中发布了原因(在括号内)。
Yeah, you're correct. Observing the MOs directly will lead to trouble, for reasons you have already posted in your question (within the parentheses).