键盘出现和消失,系统的通知
一般在viewWillAppear注册通知,在viewWillDisAppear解除通知
在键盘出现时,系统会发出通知,通知名为 UIKeyboardDidShowNotification ,注册通知即可
[[NSNotificationCenter defaultCenter] addObserve:self selector:@select (keyboardDidShow) name: UIKeyboardDidShowNotification object:nil]
在键盘消失时,系统会发出通知名为 UIKeyboardDidHideNotification 的通知
[[NSNotificationCenter defaultCenter] addObserve:self selector:@select (keyboardDidShow) name: UIKeyboardDidHideNotification object:nil]