Skip to content

Instantly share code, notes, and snippets.

@sag333ar
Created July 21, 2014 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sag333ar/2dc9e9f211b438a5cc06 to your computer and use it in GitHub Desktop.
Save sag333ar/2dc9e9f211b438a5cc06 to your computer and use it in GitHub Desktop.
Change appearance of UISearchBar Keyboard.
+ (void)changeSearchBarColor:(UISearchBar *)searchBar {
for (UIView *subview in searchBar.subviews) {
for (UIView *subSubview in subview.subviews) {
if ([subSubview conformsToProtocol:@protocol(UITextInputTraits)]) {
UITextField *textField = (UITextField *)subSubview;
[textField setKeyboardAppearance: UIKeyboardAppearanceAlert];
break;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment