目前,我正在使用嵌入式UITableView
的容器视图,并使用IQKeyboardManager
CocoaPod滚动视图,以便我的UITextFields
和UITextViews
不受保护通过键盘。
我可以成功import IQkeyboardManager
并使其在其他视图中有效,但在UITableView
嵌入到容器视图中时它无法正常工作。
答案 0 :(得分:9)
我遇到过类似的问题,并使用图书馆作者提供的here信息进行修复。
关键声明是:
库逻辑是从textField中查找最近的scrollView。在你的情况下它是tableView,这就是为什么库选择tableView来滚动。
所以我使用的解决方案是在编辑文本字段/视图时禁用UITableView滚动属性(使用委托方法),然后在编辑完成后重新启用它。这可以确保库不会将UITableView检测为可滚动,因此它会忽略它,然后移动容器视图 - 如您所愿。一旦视图按照您的意愿向上移动,您可以通过UIKeyboardWillShowNotification重新启用滚动。
例如,对于UITextField:
-(void) textFieldDidBeginEditing:(UITextField *)textField {
[self.tableView setScrollEnabled:NO];
}
- (void) textFieldDidEndEditing:(UITextField *)textField {
[self.tableView setScrollEnabled:YES];
}
然而,在视图向上移动后仍然允许滚动,我已经注册了键盘通知,然后在键盘启动后允许滚动:
-(void) keyboardWillShow {
[self.tableView setScrollEnabled:YES];
}
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow)
name:UIKeyboardWillShowNotification
object:nil];
}
答案 1 :(得分:8)
-(void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:YES]; // This line is needed for the 'auto slide up'
// Do other stuff
}
简单的解决方案,无需创建观察者。
答案 2 :(得分:0)
感谢@ vivek agravat回答! 这是快捷版本:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(true)
}
答案 3 :(得分:-1)
尝试滚动所有视图
在viewDidLoad
中NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourVC.keyboardWillShow(_:)), name:UIKeyboardWillShowNotification, object: nil)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourVC.keyboardWillHide(_:)), name:UIKeyboardWillHideNotification, object: nil)
之后
func keyboardWillShow(notification:NSNotification)
{
if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.CGRectValue()
{
self.view.frame.origin.y -= keyboardSize.height
}
}
func keyboardWillHide(notification:NSNotification)
{
if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.CGRectValue()
{
self.view.frame.origin.y += keyboardSize.height
}
}
您可以更改keyboardSize