I am trying to pass an NSDictionary form a UIView to a UIViewController using NSNotificationCenter. The dictionary works fine at the time the notification is posted, but in the receiving method I am unable to access any of the objects in the dictionary.

Here is how I am creating the dictionary and posting the notification...

itemDetails = [[NSDictionary alloc] initWithObjectsAndKeys:@"Topic 1", @"HelpTopic", nil];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"HotSpotTouched" object:itemDetails];

In the UIViewController I am setting the observer...

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(hotSpotMore:)
                                             name:@"HotSpotTouched"
                                           object:nil];

For testing purposes hotSpotMore looks like this...

- (void)hotSpotMore:(NSDictionary *)itemDetails{
      NSLog(@"%@", itemDetails);
      NSLog(@"%@", [itemDetails objectForKey:@"HelpTopic"]);    
}

The first NSLog works fine displaying the contents of the dictionary. The second log throws the following exception...

[NSConcreteNotification objectForKey:]: unrecognized selector sent to instance 0x712b130

I don't understand why I cannot access any objects in the passed dictionary.

Thanks in advance for any help.

John

link|improve this question

55% accept rate
feedback

2 Answers

The first NSLog works fine displaying the contents of the dictionary. The second log throws the following exception...

The program tries to trick you, it just looks like it is your dictionary because your dictionary is inside the notification. From the exception you can see that your object actually is from a class named NSConcreteNotification.
This is because the argument of a notification-method is always a NSNotification-object. this will work:

- (void)hotSpotMore:(NSNotification *)notification {
      NSLog(@"%@", notification.object);
      NSLog(@"%@", [notification.object objectForKey:@"HelpTopic"]);    
}

just as a hint: the object is usually the object which sends the notification, you should send your NSDictionary as userInfo.
Your method is not wrong, but I think it would improve your code if you would do it like this

[[NSNotificationCenter defaultCenter] postNotificationName:@"HotSpotTouched" object:self userInfo:itemDetails ];


- (void)hotSpotMore:(NSNotification *)notification {
      NSLog(@"%@", notification.userInfo);
      NSLog(@"%@", [notification.userInfo objectForKey:@"HelpTopic"]);    
}
link|improve this answer
Great!! Thanks that worked. I see that I did not read the Notification Programming Topics carefully enough. – user278859 Nov 8 '10 at 20:22
feedback

The method Matthias is talking about and the one I think you should be using is

postNotificationName:object:userInfo:

Where object is the sender and userInfo is your dictionary.

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.