jalmaas
jalmaas

Reputation: 918

Change between dark and light keyboard iOS7

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?Dark keyboard Light keyboard

Upvotes: 17

Views: 6188

Answers (3)

SamB
SamB

Reputation: 3313

For anyone else that finds this question from google, you can also make the keyboard dark from the storyboard as well.

enter image description here

Upvotes: 2

pesch
pesch

Reputation: 1996

in Swift 3:

textfield.keyboardAppearance = UIKeyboardAppearance.dark

Upvotes: 4

RickiG
RickiG

Reputation: 11390

textfield.keyboardAppearance = UIKeyboardAppearanceDark;

Upvotes: 32

Related Questions