监听键盘通知

2016-06-02  本文已影响40人  地选之猿

[[NSNotificationCenterdefaultCenter]addObserver:self

selector:@selector(keyboardWillShow:)

name:UIKeyboardWillShowNotification

object:nil];

[[NSNotificationCenterdefaultCenter]addObserver:self

selector:@selector(keyboardShow:)

name:UIKeyboardDidShowNotification

object:nil];

[[NSNotificationCenterdefaultCenter]addObserver:self

selector:@selector(keyboardWillHide:)

name:UIKeyboardWillHideNotification

object:nil];

[[NSNotificationCenterdefaultCenter]addObserver:self

selector:@selector(keyboardHide:)

name:UIKeyboardDidHideNotification

object:nil];

上一篇下一篇

猜你喜欢

热点阅读