iPhone transparent keyboard

1.1k Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER

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

myTextField.keyboardAppearance = UIKeyboardAppearanceAlert;