When the keyboard appears, I want to set the
keyboardAppearance = UIKeyboardAppearanceAlert
I\'ve checked the documentation and it looks l
The best way that I found to do this, if you want to do it throughout your app, is to use Appearance on UITextField. Put this in your AppDelegate on launch.
[[UITextField appearance] setKeyboardAppearance:UIKeyboardAppearanceDark];