I am trying to pass an object from my app delegate to a notification receiver in another class.

I want to pass integer messageTotal. Right now I have:

In Receiver:

- (void) receiveTestNotification:(NSNotification *) notification
{
    if ([[notification name] isEqualToString:@"TestNotification"])
        NSLog (@"Successfully received the test notification!");
}

- (void)viewDidLoad {
    [super viewDidLoad];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(dismissSheet) name:UIApplicationWillResignActiveNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveTestNotification:) name:@"eRXReceived" object:nil];

In the class that is doing the notification:

[UIApplication sharedApplication].applicationIconBadgeNumber = messageTotal;
[[NSNotificationCenter defaultCenter] postNotificationName:@"eRXReceived" object:self];

But I want to pass the object messageTotal to the other class.

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

You'll have to use the "userInfo" variant and pass a NSDictionary object that contains the messageTotal integer:

NSMutableDictionary* userInfo = [NSMutableDictionary dictionaryWithCapacity:1];
[userInfo setObject:[NSNumber numberWithInt:messageTotal] forKey:@"messageTotal"];

NSNotificationCenter* nc = [NSNotificationCenter defaultCenter];
[nc postNotificationName:@"eRXReceived" object:self userInfo:userInfo];

On the receiving end you can access the userInfo dictionary as follows:

- (void) receiveTestNotification:(NSNotification *) notification
{
    if ([[notification name] isEqualToString:@"TestNotification"])
    {
        NSDictionary* userInfo = [notification userInfo];
        int messageTotal = [[userInfo objectForKey:@"messageTotal"] intValue];
        NSLog (@"Successfully received the test notification! %i", messageTotal);
    }
}
link|improve this answer
Thanks, I'm setting messageTotal to a badge on a UIButton, do you know how I can refresh the button with the new badge count? The code to display the image in viewDidLoad is UIBarButtonItem *eRXButton = [BarButtonBadge barButtonWithImage:buttonImage badgeString:@"1" atRight:NO toTarget:self action:@selector(eRXButtonPressed)]; – Jon Oct 25 '11 at 22:46
That's a separate question! – David Dunham Oct 25 '11 at 23:53
feedback

Your Answer

 
or
required, but never shown

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