I am trying to send some data using NSNotification but get stuck. Here is my code:
// Posting Notification NSDictionary *orientationData; if(iFromInterfaceOr
You get an NSNotification object passed to your function. This includes the name, object and user info that you provided to the NSNotificationCenter.
- (void)orientationChanged:(NSNotification *)notification { NSDictionary *dict = [notification userInfo]; }