我在使用 Swift 4.2 时遇到了这个错误
类型“NSNotification.Name”没有成员“keyboardDidShowNotification”
这是我的代码:
NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardDidShow(notification:)), name: NSNotification.Name.keyboardDidShowNotification, object: nil)
以下一个在 Swift 4 上运行良好,但在 Swift 4.2 上运行良好
NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardDidShow(notification:)), name: NSNotification.Name.UIKeyboardDidShow, object: nil)