当UITableView嵌入容器视图时,IQKeyboardManager无法工作

时间:2016-08-04 13:38:25

标签: ios swift uitableview uicontainerview iqkeyboardmanager

目前,我正在使用嵌入式UITableView的容器视图,并使用IQKeyboardManager CocoaPod滚动视图,以便我的UITextFieldsUITextViews不受保护通过键盘。

我可以成功import IQkeyboardManager并使其在其他视图中有效,但在UITableView嵌入到容器视图中时它无法正常工作。

4 个答案:

答案 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