Я получаю эту ошибку с 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)
Ссылка на документ Apple: NSNotification.Name.keyboardDidShowNotification