Наблюдение UIKeyboardDidHideNotification
:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardDidHide:)
name:UIKeyboardDidHideNotification
object:nil];
- (void)keyboardDidHide:(NSNotification *)note {
// Whatever you want
}
Не забудьте позвонить removeObserver:
в dealloc
:
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
}