In the sender view
In the receiver view
(In view did load)
[[NSNotificationCenter defaultCenter] postNotificationName:@"Mynotification" object:nil];
(In view did load)
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(functionToRespondMyNotification) name:@"Mynotification" object:nil];
#pragma mark custom notification responders
-(void) functionToRespondMyNotification
{
// response
}
In viewdiddisappear
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"Mynotification" object:nil];
No comments:
Post a Comment