It's not built-in the API, so this piece of code will do. It makes your search bar display in black, and with transparency... enjoy! :)
for(UIView *subView in searchBar.subviews)
if([subView isKindOfClass: [UITextField class]])
[(UITextField *)subView setKeyboardAppearance: UIKeyboardAppearanceAlert];
4 comments:
where should i type it?? in mobileterminal??
This is when developing an application.
sorry for an other stupid question, is there a way to use the alert keyboard in the default messages applications?
Nope there isn't. Unless you jailbreak your phone maybe... but even then I don't think they changed the default applications. :)
Post a Comment