5
Cómo pasar objetos con NSNotificationCenter
Estoy tratando de pasar un objeto del delegado de mi aplicación a un receptor de notificaciones en otra clase. Quiero pasar entero messageTotal. En este momento tengo: En receptor: - (void) receiveTestNotification:(NSNotification *) notification { if ([[notification name] isEqualToString:@"TestNotification"]) NSLog (@"Successfully received the test notification!"); } - (void)viewDidLoad { [super …