tableview上添加textfield的当输入时键盘会遮挡到,解决方法如下,先上代码
`#pragma mark - textfieldDelegate
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
UIView *view = textField.superview;
while (![view isKindOfClass:[UITableViewCell class]]) {
view = [view superview];
}
UITableViewCell *cell = (UITableViewCell*)view;
CGRect rect = [cell convertRect:cell.frame toView:self.view];
if (rect.origin.y / 2 + rect.size.height>=SCREEN_HEIGHT-216) {
_tabelView.contentInset = UIEdgeInsetsMake(0, 0, 216, 0);
[_tabelView scrollToRowAtIndexPath:[_tabelView indexPathForCell:cell] atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
}
return YES;
}`
这块的实现机制主要是增大tableview的contentview。
可以创建键盘监测通知,当键盘收回是记得把tableview的contentview设置回来。