Change between dark and light keyboard iOS7
Asked Answered
P

3

17

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

Perfusion answered 9/10, 2013 at 12:45 Comment(0)
H
32
textfield.keyboardAppearance = UIKeyboardAppearanceDark;
Handwriting answered 9/10, 2013 at 12:48 Comment(0)
V
4

in Swift 3:

textfield.keyboardAppearance = UIKeyboardAppearance.dark
Veronaveronese answered 6/5, 2017 at 15:15 Comment(2)
textfield.keyboardAppearance = .darkSalmanazar
Works in Swift 4, too. Add to view did load or someplace similar.Kemppe
D
2

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

Diversity answered 14/4, 2018 at 2:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.