Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add 'addObserver' (NSNotificationCenter ) in a 1st view controller, handle in 2nd [duplicate]

I saw a few examples about adding observer and handle in the same class, but what I want to know is if it's possible to add observer in first view controller and handle it in second view controller?

I want constantly send distance from first view controller and handle it in the 2nd one. The 2nd view controller added as a sub view: addSubview, addChildViewController.

It's something like broadcast in android.

like image 381
Idan Moshe Avatar asked Jun 13 '13 06:06

Idan Moshe


1 Answers

Yes it is possible. NSNotificationCenter works exactly in that way.

Firstly, you will have to register the listener in the first view controller as below.

-(void)viewDidLoad
{
    [super viewDidLoad];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(somethingHappens:) name:@"notificationName" object:nil];
}

-(void)somethingHappens:(NSNotification*)notification
{

}

Secondly, post the notification from the second view controller as below.

[[NSNotificationCenter defaultCenter] postNotificationName:@"notificationName" object:obj];

The system will broadcast the notification to all the listeners.

like image 125
taffarel Avatar answered Sep 20 '22 06:09

taffarel