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
?