vote up 0 vote down star

I am using the NSManagedObjectContextObjectsDidChangeNotification notfication in my app, I already now how to use it. As I have used the below code to add the observer …

- (void) awakeFromNib {
NSNotificationCenter *nc;
nc = [NSNotificationCenter defaultCenter];

[nc addObserver:self
       selector:@selector(syncKVO:)
           name:NSManagedObjectContextObjectsDidChangeNotification
         object:nil];
}

- (void)syncKVO:(id)sender {
NSNotificationCenter *nc;
nc = [NSNotificationCenter defaultCenter];
[nc removeObserver:self
              name:NSManagedObjectContextObjectsDidChangeNotification
            object:nil];

// Do stuff.

[nc addObserver:self
       selector:@selector(syncKVO:)
           name:NSManagedObjectContextObjectsDidChangeNotification
         object:nil];

}

But I would like to check the userInfo dictionary to make sure the method actually has to be triggered, How would I do this?

flag

1 Answer

vote up 1 vote down check

Looking at the documentation for NSManagedObject gives you an answer.

A notification has three instance methods one of which is the -userInfo method which returns the userInfo dictionary.

It looks like your syncKVO: method is incorrect; notification handlers should take the notification object as a parameter.

The documentation for the notification you are looking for shows the keys that are in this dictionary for this notification and you can use something like this to get what you might need:

- (void)syncKVO:(NSNotification *)notification {
    NSDictionary *userInfoDictionary = [notification userInfo];
    NSSet *deletedObjects = [userInfoDictionary objectForKey:NSDeletedObjectsKey];

    // do what you want with the deleted objects
}
link|flag
Thanks, would this code work to check if the NSSet has objects in it? gist.github.com/224185 – Joshua Nov 2 at 14:24
Personally, I'd check for if([deletedObjects count]) {…} This is false if the set is nil or if it's empty. – Abizern Nov 2 at 15:36
I see, so is this right now. gist.github.com/224185 – Joshua Nov 2 at 17:03
Apart from the typos, it looks okay. But the harder part is what you do with the objects. – Abizern Nov 2 at 17:57
At the moment I don't need to do anything with the deleted objects. – Joshua Nov 3 at 6:32
show 25 more comments

Your Answer

Get an OpenID
or

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