Change UISearchBar/Keyboard Search Button Title

Jim B picture Jim B · Apr 24, 2010 · Viewed 36.8k times · Source

In the UISearchBar control, is the a way to change the Search key title for the keyboard to Done?

Answer

RunLoop picture RunLoop · Apr 24, 2010

For a searchbar named tablesearchbar:

// Set the return key and keyboard appearance of the search bar
        for (UIView *searchBarSubview in [tableSearchBar subviews]) {

            if ([searchBarSubview conformsToProtocol:@protocol(UITextInputTraits)]) {

                @try {

                    [(UITextField *)searchBarSubview setReturnKeyType:UIReturnKeyDone];
                    [(UITextField *)searchBarSubview setKeyboardAppearance:UIKeyboardAppearanceAlert];
                }
                @catch (NSException * e) {

                    // ignore exception
                }
            }
        }