Hi I need a simple example program to send and receive a message through NSNotificationCenter in Objective-C ???

link|improve this question
3  
What have you tried? Look at the -postNotificationName:object: method of NSNotificationCenter and the corresponding observation methods. – Rob Keniger Feb 3 '10 at 12:22
Homework much??? – Nippysaurus May 18 '11 at 11:09
Really very useful, thanks. One thing, the addObserver method shouldn't have the trailing semi colon after the specified selector (at least it caused an exception in my version of this). I tried editing the code above but the change was not accepted due to formatting issues in the original code. – Braunius Oct 5 '11 at 8:02
2  
That's not even a question. – SickAnimations Jan 10 at 15:21
1  
This was great: cocoawithlove.com/2008/06/… – Aram Kocharyan Feb 13 at 5:35
feedback

2 Answers

up vote 141 down vote accepted
@implementation TestClass

- (void) dealloc
{
    // If you don't remove yourself as an observer, the Notification Center
    // will continue to try and send notification objects to the deallocated
    // object.
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    [super dealloc];
}

- (id) init
{
    self = [super init];
    if (!self) return nil;

    // Add this instance of TestClass as an observer of the TestNotification.
    // We tell the notification center to inform us of "TestNotification"
    // notifications using the receiveTestNotification: selector. By
    // specifying object:nil, we tell the notification center that we are not
    // interested in who posted the notification. If you provided an actual
    // object rather than nil, the notification center will only notify you
    // when the notification was posted by that particular object.

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

    return self;
}

- (void) receiveTestNotification:(NSNotification *) notification
{
    // [notification name] should always be @"TestNotification"
    // unless you use this method for observation of other notifications
    // as well.

    if ([[notification name] isEqualToString:@"TestNotification"])
        NSLog (@"Successfully received the test notification!");
}

@end

... somewhere else in another class ...

- (void) someMethod
{

    // All instances of TestClass will be notified
    [[NSNotificationCenter defaultCenter] 
        postNotificationName:@"TestNotification" 
        object:self];

}
link|improve this answer
Thanks for the answer but how do i call them in main() – Cathy Feb 3 '10 at 12:59
I got the program done with NSNotificationCenter, thanks..Now i want to enhance the functionality by giving NSNotificationQueue. Can u give me an example or link to a simple example of that?? – Cathy Feb 4 '10 at 9:52
Just wondering where [NSNotificationCenter defaultCenter] is meant to placed. Is it best to place it in your AppDelegate? – Fulvio Jan 12 '11 at 6:17
3  
@Fulvio: It depends, if you are receiving or posting notifications that potentially affect all parts of your application, put it in your AppDelegate. If you are receiving/posting notifications that only affect a single class, put it in that class instead. – dreamlax Jan 12 '11 at 8:34
Also, note that "The method specified by notificationSelector must have one and only one argument (an instance of NSNotification)". I initially assumed that you could provide a selector without an argument and forgo the NSNotification. – Aram Kocharyan Feb 13 at 6:35
show 1 more comment
feedback

To expand upon dreamlax's example... If you want to send data along with the notifcation

In posting code:

NSDictionary *userInfo = [NSDictionary dictionaryWithObject:myObject forKey:@"someKey"];
    [[NSNotificationCenter defaultCenter] postNotificationName: @"TestNotification" object:nil userInfo:userInfo];

In observing code:

- (void) receiveTestNotification:(NSNotification *) notification

    NSDictionary *userInfo = notification.userInfo;
    MyObject *myObject = [userInfo objectForKey:@"someKey"];
}
link|improve this answer
TestNotification must be NSString type. Is it an instance variable NSNotification? – RomanHouse May 2 at 18:50
@RomanHouse Yes, it should be NSString. Corrected. – P1X3L5 May 2 at 19:56
feedback

Your Answer

 
or
required, but never shown