Skip to main content

Posts

Showing posts with the label Call method using notification.

post notification in ios

// Send Notification from you want. [[ NSNotificationCenter defaultCenter ] postNotificationName :@ "MyNotification" object : self ]; // Receive Notification in other class. Where want to receive it. [[ NSNotificationCenter defaultCenter ] addObserver : self selector : @selector (myMethod :) name :@ "MyNotification" object : nil ]; // Create method - ( void ) myMethod:( NSNotification *) notification { // Your Code here, Which you want to perform. } Happy Coding :)