概述
今天要分享的内容是tableView
中使用textFiled
键盘遮挡问题,正好做了这个就把它写出来了。
方法有很多,一个方法是使用tableViewController
,可以自动偏移的。还有个方法是在textFiled
的代理方法里面设置。我用了另一种方法:
代码
注册键盘出现消失通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
键盘将要出现的通知回调方法
- (void)keyboardWillShow:(NSNotification *)notification
{
CGRect keyboardBounds = [[[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
self.tableView.contentInset = UIEdgeInsetsMake(self.tableView.contentInset.top, 0, keyboardBounds.size.height, 0);
}
键盘将要消失的通知回调方法
- (void)keyboardWillHide:(NSNotification *)notification
{
self.tableView.contentInset = UIEdgeInsetsMake(self.tableView.contentInset.top, 0, 0, 0);
}
移除通知
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}
补充
上面代码中可以看到contentInset
这个属性,打印iOS7和iOS6的这个属性会发现,iOS7中self.tableView.contentInset.top
的值是64
,这个属性就解释了iOS7以后scrollview
以及其子类在导航栏下面会有64
点偏移。
contentInset
这个属性我在项目中也用到了,一个一级页面需要隐藏导航栏,二级页面显示,但是tableView
需要留出导航栏的位置(>64
),就用到了这个属性设置偏移。
上面代码会有个问题,在iOS7中使用挺好使的,整个tableView
滚动区域偏移到键盘上方,textFiled
偏移到键盘上方。但是在iOS6中会发现,textFiled
不会偏移到键盘上方,但是整个tableView
还会在键盘上方。所以iOS6需要在- (void)keyboardWillShow:(NSNotification *)notification
添加设置tableView
的setContentOffset
代码。
CGFloat y = NAV_HEIGHT+self.bgScrollView.contentSize.height+keyboardBounds.size.height-SCREEN_HEIGHT;
[self.bgScrollView setContentOffset:CGPointMake(0, y) animated:YES];
上面代码仅作参考,使用还需要修改下y
值。
不过我就一个页面setContentOffset
,iOS6设备也不多了,前面代码也解决了iOS6上面键盘遮挡问题,只是需要自己手动滑一下。