使用底部约束处理键盘

时间:2018-05-04 09:44:18

标签: ios iphone swift cocoa-touch uiview

我正在使用常规设计和聊天应用的用户界面构建聊天应用。

我的应用程序需要一个“工具栏”(0,0 375x66),我希望它能够保持显示键盘的位置。它有4个约束:top:0,leading:0,trailing:0,aspect-ratio:125:22

我有一个UICollectionView(0,66 375x530),我希望在显示键盘时像任何其他聊天应用程序一样滚动。它有4个约束:top(到工具栏):0,leading:0,trailing:0,bottom(到newMessageView我会很快解释):0

我的UIView里面有UITextField。我们称之为newMessageView(0,596 375x71),它有4个约束:bottom:0,leading:0,trailing:0,aspect-ratio:375:71

现在,我正在尝试在显示键盘时带上newMessageView应用。我想这样做:

@objc func keyboardWillShow(notification: NSNotification) {
    if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue {
        if self.view.frame.origin.y == 0{
            self.newMessageViewBottomConstraint.constant += keyboardSize.height
        }
    }
}

@objc func keyboardWillHide(notification: NSNotification) {
    if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue {
        if self.view.frame.origin.y != 0{
            self.newMessageViewBottomConstraint.constant -= keyboardSize.height
        }
    }
}

但它完全不起作用。视图跳跃和隐藏,我真的不明白为什么。

我做得对吗?任何人都可以帮助我并指导我吗?

1 个答案:

答案 0 :(得分:1)

您必须在更新约束

后使用self.view.layoutIfNeeded()

我为你写完整的解决方案

 class ViewController: UIViewController {

        override func viewDidLoad() {
            super.viewDidLoad()

            NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardWillShow), name: NSNotification.Name.UIKeyboardWillShow, object: nil)
            NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardWillHide), name: NSNotification.Name.UIKeyboardWillHide, object: nil)

        }

        @objc func keyboardWillShow(notification: Notification) {
            self.keyboardControl(notification, isShowing: true)
        }

        @objc func keyboardWillHide(notification: Notification) {
            self.keyboardControl(notification, isShowing: false)
        }


        private func keyboardControl(_ notification: Notification, isShowing: Bool) {


            /* Handle the Keyboard property of Default*/

            var userInfo = notification.userInfo!
            let keyboardRect = (userInfo[UIKeyboardFrameEndUserInfoKey]! as AnyObject).cgRectValue
            let curve = (userInfo[UIKeyboardAnimationCurveUserInfoKey]! as AnyObject).uint32Value

            let convertedFrame = self.view.convert(keyboardRect!, from: nil)
            let heightOffset = self.view.bounds.size.height - convertedFrame.origin.y
            let options = UIViewAnimationOptions(rawValue: UInt(curve!) << 16 | UIViewAnimationOptions.beginFromCurrentState.rawValue)
            let duration = (userInfo[UIKeyboardAnimationDurationUserInfoKey]! as AnyObject).doubleValue



            var  pureheightOffset : CGFloat = -heightOffset

            if isShowing { /// Wite space of save area in iphonex ios 11
                if #available(iOS 11.0, *) {
                    pureheightOffset = pureheightOffset + view.safeAreaInsets.bottom
                }
            }

            // Here change you Consrant
         //   self.actionBarPaddingBottomConstranit?.update(offset:pureheightOffset)

            UIView.animate(
                withDuration: duration!,
                delay: 0,
                options: options,
                animations: {
                    self.view.layoutIfNeeded()
            },
                completion: { bool in

            })

        }