Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 8 down vote accepted

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|improve this answer
I have also given @classB in classA.h, so now can i do it in both the classes as @classA in classB.h too. – Cathy Feb 18 '10 at 5:15
Are you trying to pass messages between class A and class B? – Anurag Feb 18 '10 at 8:23
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?? – Cathy Feb 18 '10 at 10:05
I edited my answer in response to your comment. – Anurag Feb 18 '10 at 20:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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