I'd like to know when an object has been inserted into my Core Data MOC and when it has, add it to another object with a relationship.
So I watch the NSManagedObjectContextObjectsDidChangeNotification notifications find all the objects of the correct class in the set of inserted objects and make the connection using addObject so that the KVO is handled correctly. It appears to work just fine.
Is this legal inside NSManagedObjectContextObjectsDidChangeNotification?