我在textViews
中有tableView
。当选择textViews
(tableView
的底部)时,键盘会弹出,并隐藏textView
,您也无法向下滚动。所以我添加了以下代码:
- (void)keyboardWasShown:(NSNotification*)aNotification
{
NSDictionary* info = [aNotification userInfo];
CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);
myTableView.contentInset = contentInsets;
myTableView.scrollIndicatorInsets = contentInsets;
CGRect aRect = self.view.frame;
aRect.size.height -= kbSize.height;
if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {
[self.myTabelView scrollRectToVisible:activeField.frame animated:YES];
}
}
我现在遇到了相反的问题。当键盘确实显示时,顶部的拖拉不会显示,也不可能一直向上滚动。
答案 0 :(得分:0)
您好,您是否尝试使用TPKeyboardAvoiding?我用它来解决这种情况,而不需要编写任何代码......你可以快速尝试CocoaPod。