将自定义输入视图设置为全局所有文本字段的最简单方法

Easiest way to set custom inputview to all textFields globally

我为当前正在使用的应用程序创建了自定义输入视图,我可以通过以下操作将此键盘分配给 textField

textField.inputView = myCustomKeyboard as! UIView

现在我只想用我的自定义 inputView 切换所有 inputView,有没有更简单的方法可以做到这一点而不必在我的应用程序中单独设置所有 textFields 上的 inputView

[[UITextField appearance] setInputView:customeView];

或swift:

UITextField.appearance().inputView = customeView

Please create custom view and add this line into app delegate did finish launching option