Top "Nsnotification" questions

NSNotification objects encapsulate information so that it can be broadcast to other objects by an NSNotificationCenter object.

UIKeyboardDidShowNotification called multiple times, and sometimes with incorrect keyboard dimensions

I am trying to move a UITextView above the keyboard whenever the keyboard appears/changes. Let's say I have the …

ios uikeyboard nsnotification
NSNotifications name best practice

In trying to de-couple my model from the view controllers that display fetched data, when an asynchronous fetch completes, I …

objective-c c-preprocessor nsnotification
how to use Notification.Name extension from swift 3 to Objective-C

I created an extension for Notification.Name as below : public extension Notification.Name { public static let blahblahblah = Notification.Name(rawValue: "…

ios swift3 notifications extension-methods nsnotification
MPMoviePlayerController will not automatically dismiss movie after finish playing (ios 6)

I may not have worded my title very well, maybe more correct to say my NSNotification isn't dismissing my movie's …

video ios6 mpmovieplayercontroller movie nsnotification
NSNotificationCenter selector not being called

In my iPad app, in one class I register for a notification: NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; [nc addObserver:self selector:@…

objective-c cocoa-touch ipad nsnotification nsnotificationcenter
Where to addObserver to NSNotificationcenter in a custom UITableViewCell?

In my UITableViewCell I have a method initNotification which is called by the TableViewController in cellForRowAtIndexPath where the TableCells are …

ios uitableview nsnotificationcenter nsnotification