Reputation: 701
I just bought the new iPad and found the amazing looking keyboard which pops up while asking for passcode.
I would like to have the same black colored keyboard through out my iPad Applications which i am currently working on.
Can any1 help me figure it out how to achieve this programatically , i know that apple provides only 2 types of keyboard looks. But still fellas lets give it a shot and try it out.. what say.. so any help would be appreciated .
thanks in advance !!
NOTE: P.S. i am not talking about any jailbroken or any such stuff. I want to achieve this through coding in Xcode using my mac.
Upvotes: 1
Views: 4358
Reputation: 5245
There's no built-in API for this. You would have to build a custom keyboard to get that exact look. As suggested by others, UIKeyboardAppearanceAlert
comes close.
Upvotes: 0
Reputation: 19418
I've used this in iPhone but you can try this to iPad. Try to set keyboardAppearance
property of the text field to UIKeyboardAppearanceAlert
. This gives a black background.
Upvotes: 2