Perguntas com a marcação «nsnotifications»

5
Como passar um objeto com o NSNotificationCenter
Estou tentando passar um objeto do meu aplicativo delegado para um receptor de notificação em outra classe. Eu quero passar inteiro messageTotal. Agora eu tenho: No receptor: - (void) receiveTestNotification:(NSNotification *) notification { if ([[notification name] isEqualToString:@"TestNotification"]) NSLog (@"Successfully received the test notification!"); } - (void)viewDidLoad { [super viewDidLoad]; [[NSNotificationCenter …

5
Como passar dados usando NotificationCenter em swift 3.0 e NSNotificationCenter em swift 2.0?
Estou implementando socket.ioem meu aplicativo ios swift. Atualmente em vários painéis estou ouvindo o servidor e aguardando mensagens recebidas. Estou fazendo isso chamando a getChatMessagefunção em cada painel: 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: Onde remover o observador para NSNotification?
Eu tenho uma classe C objetiva. Nele, criei um método init e configurei um NSNotification nele //Set up NSNotification [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getData) name:@"Answer Submitted" object:nil]; Onde eu defino o [[NSNotificationCenter defaultCenter] removeObserver:self]nesta classe? Eu sei que para a UIViewController, posso adicioná-la ao viewDidUnloadmétodo. Então, o que precisa ser feito …
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.