Questions marquées «nsnotifications»

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 …

5
Comment transmettre des données à l'aide de NotificationCenter dans Swift 3.0 et NSNotificationCenter dans Swift 2.0?
J'implémente socket.iodans mon application iOS rapide. Actuellement sur plusieurs panneaux, j'écoute le serveur et j'attends les messages entrants. Je le fais en appelant la getChatMessagefonction dans chaque panneau: 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
Objectif-C: Où retirer l'observateur pour NSNotification?
J'ai une classe C objective. Dans celui-ci, j'ai créé une méthode init et mis en place une NSNotification dedans //Set up NSNotification [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getData) name:@"Answer Submitted" object:nil]; Où dois-je placer le [[NSNotificationCenter defaultCenter] removeObserver:self]dans cette classe? Je sais que pour a UIViewController, je peux l'ajouter dans la viewDidUnloadméthode …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.