up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question

50% accept rate
I thought all these long class names where in Java only..No I am wrong :) – – user200654 Nov 6 '09 at 23:10
feedback

1 Answer

up vote 2 down vote accepted

That is perfectly legal, you just need to be careful when you do things like this that you don't cause infinite recursion (by, for instance, inserting an object that cause a notification the causes you to add an object, etc).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.