Monday 28 March 2011

NSNotificationCenter / Events / Observer

Adds an observer for the UI Keyboard appearing. - When it does it calls the method: keyboardDidShow


- (void) viewWillAppear:(BOOL)animated {
   [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidShow:)
name:UIKeyboardDidShowNotification object:nil];
}

No comments:

Post a Comment