当 textView 显示键盘不起作用时向上移动视图

Move up view when textView show keyboard not working

我在情节提要中只有一个文本视图和文本字段。当 textfield 或 textView 显示键盘时,我想向上移动滚动视图。对于 UITextField 来说,一切都很好,但对于 textView 来说,那是行不通的。有我的向上移动视图的代码:

  func keyboardWillShow(notification: NSNotification) {

    if let endFrame = (notification.userInfo?[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue {
      var keyboardHeight = view.bounds.height - endFrame.origin.y
      if #available(iOS 11, *) {
        if keyboardHeight > 0 {
          keyboardHeight = keyboardHeight - view.safeAreaInsets.bottom
          var contentInset:UIEdgeInsets = self.scrollView.contentInset
              contentInset.bottom = keyboardHeight
              viewBottom.constant = keyboardHeight
              self.scrollView.contentInset = contentInset
        }
      }
      else {
            let keyboardSize = (notification.userInfo![UIKeyboardFrameEndUserInfoKey] as! NSValue).cgRectValue.size
            var contentInset:UIEdgeInsets = self.scrollView.contentInset
            contentInset.bottom = (keyboardSize.height)
            self.scrollView.contentInset = contentInset
      }
      view.layoutIfNeeded()
    }

  }

  func keyboardWillHide(notification: NSNotification) {

    var contentInset:UIEdgeInsets = self.scrollView.contentInset
    contentInset.bottom = 0
    self.scrollView.contentInset = contentInset

  }

用于显示键盘的 textfield 和 textView 有什么区别? 当我点击 textview 时调用的方法和滚动视图内容插入与点击文本字段时相同但视图不向上移动。 如何解决这个问题?

class matchViewController: UIViewController,UITextViewDelegate {
var activeTextview: UITextView?
@IBOutlet weak var yourTextview: UITextView!
@IBOutlet weak var scrollView: UIScrollView!

override func viewDidLoad() {
    super.viewDidLoad()
    yourTextview.delegate=self
    NotificationCenter.default.addObserver(self, selector: #selector(yourViewController.keyboardWillShow(_:)), name:NSNotification.Name.UIKeyboardWillShow, object: self.view.window)
    NotificationCenter.default.addObserver(self, selector: #selector(yourViewController.keyboardWillHide(_:)), name:NSNotification.Name.UIKeyboardWillHide, object: self.view.window)

}

@objc func keyboardWillShow(_ sender: Notification) {

    var info: [AnyHashable : Any] = sender.userInfo!
    let kbSize: CGSize = ((info[UIKeyboardFrameEndUserInfoKey]! as AnyObject).cgRectValue.size)
    let contentInsets: UIEdgeInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0)
    scrollView.contentInset = contentInsets
    scrollView.scrollIndicatorInsets = contentInsets
    var aRect: CGRect = self.view.frame
    aRect.size.height -= kbSize.height

    if let activeTextview=activeTextview{
        self.scrollView.scrollRectToVisible((activeTextview.frame), animated: true)

    }

}


override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?){
    view.endEditing(true)
    super.touchesBegan(touches, with: event)
}

@objc func keyboardWillHide(_ sender: Notification) {
    let userInfo: [AnyHashable: Any] = sender.userInfo!
    let keyboardSize: CGSize = (userInfo[UIKeyboardFrameBeginUserInfoKey]! as AnyObject).cgRectValue.size
    self.scrollView.frame.origin.y += keyboardSize.height


}


override func viewDidDisappear(_ animated: Bool) {
    NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIKeyboardWillShow, object: self.view.window)
    NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIKeyboardWillHide, object: self.view.window)
}



  func textViewDidBeginEditing(_ textView: UITextView) {
    activeTextview=textView

}
func textViewDidEndEditing(_ textView: UITextView){
    activeTextview=nil
}
}