iPhone transparent keyboard
How could I change the look and feel of standard UIKeyboard object. I want to create transparent keyboard for UITextField开发者_运维百科 object.
You can set the keyboardAppearance property on your UITextField object to UIKeyboardAppearanceAlert:
myTextField.keyboardAppearance = UIKeyboardAppearanceAlert;
精彩评论