任何修复类型 'NSNotification.Name' 没有成员 'UITextField' 错误的解决方案?

Any Solutions to fix Type 'NSNotification.Name' has no member 'UITextField' error?

我最近安装了一个名为 "NumericKeyboard" 的 pod,但出现以下错误。我已经在这里工作了 2 个小时,所以我们将不胜感激。

错误 #1:类型 'NSNotification.Name' 没有成员 'UITextField'

NotificationCenter.default.post(name: NSNotification.Name.UITextField.textDidChangeNotification, object: self.textView)

错误 #2:类型 'NSNotification.Name' 没有成员 'UITextView'

NotificationCenter.default.post(name: NSNotification.Name.UITextView.textDidChangeNotification, object: self.textView)

应该是

NotificationCenter.default.post(name: UITextView.textDidChangeNotification, 
                              object: self.textView)