[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
- (IBAction)keyboardWillHide:(NSNotification *)note
在做一个ipad项目的时候,遇到键盘挡住输入框的时候,于是就采取整个视图往上移的方法,点return就回收键盘视图回归正常,之前一直是在iphone中应用这种方法,没有问题,但是在ipad中,它的右下角有个按钮一点也是回收键盘,但是一回收,整个视图没有被执行回归正常。具体表达:
- (void)viewWillAppear:(BOOL)animated
{
}
- (void)keyboardWillHide:(NSNotification *)note
{
}