I created a custom input view for the App I'm currently working on, I can assign this keyboard to a textField
by doing:
textField.inputView = myCustomKeyboard as! UIView
Now I just want to switch out all inputViews with my custom inputView, is there a simpler way to do this without having to set the inputView
on all the textFields separately in my app?
or swift: