«nsnotifications» etiketlenmiş sorular

5
NSNotificationCenter ile nesne nasıl geçirilir
Uygulama temsilcimden başka bir sınıftaki bir bildirim alıcısına bir nesne geçirmeye çalışıyorum. Tamsayı geçirmek istiyorum messageTotal. Şu anda var: Alıcıda: - (void) receiveTestNotification:(NSNotification *) notification { if ([[notification name] isEqualToString:@"TestNotification"]) NSLog (@"Successfully received the test notification!"); } - (void)viewDidLoad { [super viewDidLoad]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(dismissSheet) name:UIApplicationWillResignActiveNotification object:nil]; [[NSNotificationCenter defaultCenter] …

5
Hızlı 3.0'da NotificationCenter ve hızlı 2.0'da NSNotificationCenter kullanılarak veri nasıl geçirilir?
socket.ioSwift ios uygulamamda uyguluyorum . Şu anda birkaç panelde sunucuyu dinliyorum ve gelen mesajları bekliyorum. Bunu getChatMessage, her paneldeki işlevi çağırarak yapıyorum : func getChatMessage(){ SocketIOManager.sharedInstance.getChatMessage { (messageInfo) -> Void in dispatch_async(dispatch_get_main_queue(), { () -> Void in //do sth depending on which panel user is }) } } Ancak bunun …


14
Amaç-C: NSNotification için gözlemci nereden kaldırılır?
Objektif bir C sınıfım var. İçinde bir init yöntemi oluşturdum ve içinde bir NSNotification kurdum //Set up NSNotification [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getData) name:@"Answer Submitted" object:nil]; [[NSNotificationCenter defaultCenter] removeObserver:self]Bu sınıfta nereye ayarlarım ? Biliyorum ki a için UIViewController, onu viewDidUnloadyönteme ekleyebilirim. Öyleyse, sadece bir hedef c Sınıfı oluşturduysam ne yapılması gerekiyor?
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.