Domande taggate «nsnotifications»

5
Come passare l'oggetto con NSNotificationCenter
Sto cercando di passare un oggetto dal delegato della mia app a un destinatario di notifica in un'altra classe. Voglio passare numeri interi messageTotal. In questo momento ho: Nel ricevitore: - (void) receiveTestNotification:(NSNotification *) notification { if ([[notification name] isEqualToString:@"TestNotification"]) NSLog (@"Successfully received the test notification!"); } - (void)viewDidLoad { …

5
Come passare i dati utilizzando NotificationCenter in swift 3.0 e NSNotificationCenter in swift 2.0?
Sto implementando socket.ionella mia app iOS rapida. Attualmente su più pannelli sto ascoltando il server e aspetto i messaggi in arrivo. Lo faccio chiamando la getChatMessagefunzione in ogni pannello: func getChatMessage(){ SocketIOManager.sharedInstance.getChatMessage { (messageInfo) -> Void in dispatch_async(dispatch_get_main_queue(), { () -> Void in //do sth depending on which panel user …


14
Objective-C: dove rimuovere l'osservatore per NSNotification?
Ho una classe C obiettivo. In esso, ho creato un metodo init e ho impostato una NSNotification in esso //Set up NSNotification [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getData) name:@"Answer Submitted" object:nil]; Dove imposto il [[NSNotificationCenter defaultCenter] removeObserver:self]in questa classe? So che per a UIViewController, posso aggiungerlo al viewDidUnloadmetodo Quindi cosa devo fare …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.