How to create a class to send and receive events through NSNotificationCenter in Objective-C?

10,342

Ideally an object would start observing interesting events as soon as its initialized. So it will register all interesting events with the NotificationCenter inside its initialization code. sendEvent: is basically a wrapper around the postNotification: method.

@implementation A

- (id)init {
    if(self = [super init]) {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveEvent:) name:@"SomeEvent" object:nil];
    }
    return self;
}

- (void)sendEvent {
    [[NSNotificationCenter defaultCenter] postNotificationName:@"SomeOtherEvent" object:nil];
}

// Called whenever an event named "SomeEvent" is fired, from any object.
- (void)receiveEvent:(NSNotification *)notification {
    // handle event
}

@end

Same for class B.

Edit 1:

You might be over-complicating the problem. A NSNotificationCenter acts as a broker to whom all events are sent and it decides who to forward that to. It's like the Observer pattern but objects don't directly observe or notify each other, but rather through a central broker - the NSNotificationCenter in this case. With that you don't need to directly connect two classes that might be interacting with each other with an #include.

While designing your classes, don't worry about how an object would get notified or how it would notify other interested objects, only that an object needs to get notified about some events when they occur, or it needs to inform NSNotficationCenter of its events when they occur.

So in short, find out all events that an object should know about and register those events in this init() method, and unregister them in the dealloc() method.

You may find this basic tutorial helpful.

Share:
10,342
Cathy
Author by

Cathy

Updated on June 15, 2022

Comments

  • Cathy
    Cathy about 2 years

    I need to create two classes and both should be able to send and receive the events through the NSNotificationCenter methods.ie Both should have the sendEvent and receiveEvent methods:

          @implementation Class A
    -(void)sendEvent
    {
        addObserver:---  name:---- object:---
    }
    
    -(void)ReceiveEvent
    {
    postNotificationName: --- object:---
    }
    @end
    

    Same as such another class say ClassB should also be able to send and receive the events. How can it be done?

  • Cathy
    Cathy over 14 years
    I have also given @classB in classA.h, so now can i do it in both the classes as @classA in classB.h too.
  • Chance
    Chance over 14 years
    Are you trying to pass messages between class A and class B?
  • Cathy
    Cathy over 14 years
    Actually my request is to make one classA with one NSNotificationCenter and using the object of it i should be able to create sendEvent() method and SubscribeEvent() method. Now ClassA should be able to receive events and sendEvents to any other class.How to do it??
  • Anthony Kong
    Anthony Kong over 10 years
    @Anurag Why the name is SomeEvent' in addObserver but SomeOtherEvent` in postNotificationName? Should they be the same?
  • Chance
    Chance over 10 years
    @AnthonyKong They are conceptually different events in my example.