Just call on any method of sending notifications, as described here , for example:
To post a notification:
-(void)postNotificationName:(NSString *)notificationName object:(id)notificationSender userInfo:(NSDictionary *)userInfo;
where userInfo
is a dictionary containing useful objects.
On the other hand, register for notifications:
-(void)addObserver:(id)notificationObserver selector:(SEL)notificationSelector name:(NSString *)notificationName object:(id)notificationSender;
You can also check out Apple Notification Programming Themes .
user756245
source share