Reputation: 918
In iOS7 we have both a dark and a light keyboard. Is it possible for me to change between these in my app by code?
Upvotes: 17
Views: 6188
Reputation: 3313
For anyone else that finds this question from google, you can also make the keyboard dark from the storyboard as well.
Upvotes: 2
Reputation: 1996
in Swift 3:
textfield.keyboardAppearance = UIKeyboardAppearance.dark
Upvotes: 4