3

How could I change the look and feel of standard UIKeyboard object. I want to create transparent keyboard for UITextField object.

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
Manu
  • 33
  • 3

1 Answers1

5

You can set the keyboardAppearance property on your UITextField object to UIKeyboardAppearanceAlert:

myTextField.keyboardAppearance = UIKeyboardAppearanceAlert;
Chris Gummer
  • 4,772
  • 1
  • 24
  • 17