Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 71 down vote accepted

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
                }
            }
        }
share|improve this answer
It works. Fantastic answer. Many thanks. – Jim B Apr 25 '10 at 22:52
Thanks JK! Helped me as well – ambertch Apr 30 '10 at 0:37
Will this get past the App Store approval process? – zekel Jun 17 '10 at 0:26
4  
As no private APIs are accessed, approval should not be withheld – Run Loop Jun 17 '10 at 5:53
3  
+1. Why isn't there a keyboard property.. – quantumpotato Jun 1 '11 at 16:06
show 2 more comments

One more useful hint, to the Run Loop code (in "@try") section.

This enabled "Done" button when text field is empty:

UITextField *tf = (UITextField *)searchBarSubview;
tf.enablesReturnKeyAutomatically = NO;
share|improve this answer

Since the Alert-style keyboards are semi-transparent, I can see my view behind it. It doesn't look very good since I have multiple elements behind the keyboard that makes it hard for the keys to stand out. I wanted an all-black keyboard.

So I animated a black UIImageView into position behind the keyboard when text is edited. This gives the appearance of an all-black keyboard.

- (void)textFieldDidBeginEditing:(UITextField *)textField {

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.25]; 

    blackBoxForKeyboard.frame = CGRectMake(0, 377, 320, 216);
    [UIView commitAnimations]; 

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.