5
Comment passer un objet avec NSNotificationCenter
J'essaie de transmettre un objet de mon délégué d'application à un récepteur de notification dans une autre classe. Je veux passer un entier messageTotal. En ce moment j'ai: Dans le récepteur: - (void) receiveTestNotification:(NSNotification *) notification { if ([[notification name] isEqualToString:@"TestNotification"]) NSLog (@"Successfully received the test notification!"); } - (void)viewDidLoad …