键盘 show/hide 的通知中心在 iOS 11 中不工作

Notification centre for keyboard show/hide not working in iOS 11

键盘通知中心注册 show/hide 对我的应用程序有效,更新到 iOS 11 或更高版本后,键盘通知中心无法正常工作?

func registerNotificationObservers()
{
    NotificationCenter.default.addObserver(self, selector: #selector(ArticleDetailsVC.keyboardWillShow), name: NSNotification.Name.UIKeyboardWillShow, object: nil)

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

   }

func removeNotificationObservers()
{

    NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIKeyboardWillShow, object: nil)

    NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIKeyboardWillHide, object: nil)


}

func keyboardWillShow(notification: NSNotification)
{
    if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue
    {
        if self.commentsTableView.frame.origin.y == 0{
            print("keyboardWillShow ..")
            self.tableViewFooter.frame.origin.y -= keyboardSize.height - 50
            self.commentsTableView.frame.origin.y -= keyboardSize.height

        }


    }

}


func keyboardWillHide(notification: NSNotification)
{
    if let keyboardSize = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue
    {
        if self.commentsTableView.frame.origin.y != 0{

            print("keyboardWillHide ..")
            self.tableViewFooter.frame.origin.y += keyboardSize.height + 50
            self.commentsTableView.frame.origin.y += keyboardSize.height

       }


    }
 }

我需要做什么? 提前致谢。

为您的观察者尝试使用更新后的语法:

func registerNotificationObservers() {
    NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillShow), name: .UIKeyboardWillShow, object: nil)
    NotificationCenter.default.addObserver(self, selector:#selector(keyboardWillHide), name: .UIKeyboardWillHide, object: nil)
}

func removeNotificationObservers() {
    NotificationCenter.default.removeObserver(self, name: .UIKeyboardWillShow, object: nil)
    NotificationCenter.default.removeObserver(self, name: .UIKeyboardWillHide, object: nil)
}

@objc func keyboardWillShow(_ notification: Notification) {
    print("keyboardWillShow")
}


@objc func keyboardWillHide(_ notification: Notification) {
    print("keyboardWillHide")
}