我试图获取键盘测量值,但是在旋转过程中,我总是在打印部分遇到2条关于键盘测量到水平位置和3条到垂直位置的通知。

  override func viewDidLoad() {
    super.viewDidLoad()
    tabBarController?.tabBar.isHidden = true

    collectionView?.backgroundColor = UIColor.white
    collectionView?.register(ChatLogMessageCell.self, forCellWithReuseIdentifier: cellId)
    collectionView?.alwaysBounceVertical = true

    collectionView?.showsVerticalScrollIndicator = true


   collectionView?.scrollIndicatorInsets = UIEdgeInsets(top: 0,left: 0,bottom: (tabBarController?.tabBar.frame.size.height)!,right: 0)
     view.addSubview(messageInputContainerView)
    view.addConstraintsWithFormat("H:|[v0]|", views: messageInputContainerView)
    view.addConstraintsWithFormat("V:[v0(48)]|", views: messageInputContainerView)
    setupInputComponents()
    NotificationCenter.default.addObserver(self, selector: #selector(handleKeyboardNotification(notification:)), name: NSNotification.Name.UIKeyboardWillShow, object: nil)

}
deinit {
      print("Remove NotificationCenter Deinit")
    NotificationCenter.default.removeObserver(self)
}
func handleKeyboardNotification(notification: NSNotification) {
    if let userInfo = notification.userInfo {
        let keyboardFrame = (userInfo[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue
        print(keyboardFrame)
    }
}

到底是怎么回事:
当我第一次点击textField时:只有一个字符串-Optional((0.0,451.0,375.0,216.0))-符合预期。

然后在发生旋转过程时:有两个字符串Optional((0.0,213.0,667.0,162.0))
可选((0.0,213.0,667.0,162.0))

毕竟,当我将其放回垂直位置时:甚至出现了另外三个字符串:Optional((0.0,667.0,375.0,0.0))
可选((0.0,667.0,375.0,0.0))
可选((0.0,451.0,375.0,216.0))

在其他讨论中有人说:“这是正常现象,因为键盘在旋转之前会掉落,旋转之后又会升起”,但是我没有在文档中或其他任何地方找到任何确认信息。为什么会这样呢?拜托,我真的很困惑(

最佳答案

您可以通过将Int设置为零来解决此问题,然后在用户弹出键盘时,将Int设置为1(或其他一些数字),如下所示:

var keyBoardCount:Int = 0
func handleKeyboardNotification(notification: NSNotification) {
    if keyBoardCount == 0 { //If the keyboard hasnt been raised, raise it.
        if let userInfo = notification.userInfo {
           let keyboardFrame = (userInfo[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue
            print(keyboardFrame)
            keyBoardCount = 1 //once you raise the keyboard, set the counter to 1
        }
    }
}

然后,当用户接受输入的字符串(IE完成对textField的编辑)时,将keyBoardCount设置回零,以重置整个过程。

这样可以防止多次触发该功能。

08-18 06:23
查看更多