Preguntas etiquetadas con nsnotifications

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 …

5
¿Cómo pasar datos usando NotificationCenter en swift 3.0 y NSNotificationCenter en swift 2.0?
Estoy implementando socket.ioen mi aplicación ios rápida. Actualmente en varios paneles estoy escuchando el servidor y espero mensajes entrantes. Lo hago llamando a la getChatMessagefunción en cada panel: func getChatMessage(){ SocketIOManager.sharedInstance.getChatMessage { (messageInfo) -> Void in dispatch_async(dispatch_get_main_queue(), { () -> Void in //do sth depending on which panel user is …


14
Objective-C: ¿Dónde eliminar al observador para NSNotification?
Tengo una clase C objetiva. En él, creé un método init y configuré una NSNotification en él //Set up NSNotification [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getData) name:@"Answer Submitted" object:nil]; ¿Dónde configuro el [[NSNotificationCenter defaultCenter] removeObserver:self]en esta clase? Sé que para a UIViewController, puedo agregarlo al viewDidUnloadmétodo. Entonces, ¿qué se debe hacer si …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.