效果演示:
解决的问题:键盘(keyboard)弹出时覆盖了tableViewCell上的输入框。
关于这个问题最初我是用了系统的UITableViewController类,这个类里系统处理了键盘的弹出与输入框之间的位置关系。But!!!在使用UITabBarController的时候,它计算出的位置关系就会有49高度的误差。。。至于原因我也没有找到(虽然知道肯定和tab有关但是真的不知道怎么处理),如果哪位朋友有解决方法的真心求教。。。
既然系统的UITableViewController不会用了,那我就只能自己写一个自己的TableViewController了。
下面上代码:
[[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 *)notice {
if (self.startContentOffset.y > self.tableView.contentOffset.y) {
self.startContentOffset = self.tableView.contentOffset;
}
NSDictionary *info = [notice userInfo];
CGSize size = [[info objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;//键盘的大小
self.duration = [[info objectForKey:UIKeyboardAnimationDurationUserInfoKey] floatValue];//键盘出现的动画时间
CGFloat keyboardY = [UIScreen mainScreen].bounds.size.height - size.height - 64;//键盘的最高点Y值
//currentTextFieldFrame属性为当前输入框相对于tableView的frame,在子类中赋值
if ((self.currentTextFieldFrame.origin.y + self.currentTextFieldFrame.size.height - self.startContentOffset.y) > keyboardY) {
[UIView animateWithDuration:self.duration animations:^{
//这里你完全可以再加上一点间隔~
self.tableView.contentOffset = CGPointMake(0, (self.currentTextFieldFrame.origin.y + self.currentTextFieldFrame.size.height) - keyboardY);
}];
}
}
在键盘弹出的时候用一个中间量记录tableView的contentOffset,并比较键盘的最高点是否覆盖在textField上
- (void)keyboardWillHide:(NSNotification *)notice {
[UIView animateWithDuration:self.duration animations:^{
self.tableView.contentOffset = self.startContentOffset;
}];
}
键盘收起时还原tableView.contentOffset
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
NSLog(@"Execution dealloc");
}
最后在dealloc的时候移除监听
具体逻辑就是这样了,下面是我写的一个demo~
传送门:毛小崔的github
欢迎各位的回复,有疑问也可以写出来,当然有更好方案的提出来就更好了~