Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I change the font size of UISearchBar ?

Edit:
Answer

for(int i =0; i<[searchbar.subviews count]; i++) {
        if([[searchbar.subviews objectAtIndex:i] isKindOfClass:[UITextField class]])
            [(UITextField*)[searchbar.subviews objectAtIndex:i] setFont:[UIFont fontWithName:@"Helvetica" size:12]];
    }

Thanks
Pankaj

share|improve this question

3 Answers

up vote 7 down vote accepted

The UISearchBar has a UITextField inside, but there's no property to access it. So, there is no way for doing it in a standard way.

But there is a non-stardard way to workaround it. UISearchBar inherits from UIView, you can access it's subviews using [searchBar subviews]. If you print in the console it's subviews you will see that it have these views.

UISearchBarBackground, UISearchBarTextField.

So, to change the font size you will only need to do that

    UITextField *textField = [[searchBar subviews] objectAtIndex:1];
[textField setFont:[UIFont fontWithName:@"Helvetica" size:40]];

But, if the UISearchBar changes in the future and the textfield isn't in the position 1 anymore, your program will crash, so it's better to check through the subviews the position of the UITextField and then set the font size.

share|improve this answer
thanks it worked perfect... i have slightly edited your code and have posted it here as edit – pankaj Jan 15 '11 at 4:55

I suggest yet a different option for iOS 5.0 and up:

[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setFont:[UIFont systemFontOfSize:14]];

This way you don't need to mess with enumerating subviews for every search bar in your app.

share|improve this answer
This is the correct answer using apple APIs! Ignore anything else recommended here. – yar1vn Jan 24 at 0:38
This does not work. For the appearance proxy to work for a particular class/method, the class header file needs a UI_APPEARANCE_SELECTOR for that method. If you open up UITextField, you'll notice that it doesn't have any UI_APPEARANCE_SELECTOR annotations. – Bart Vandendriessche Mar 18 at 6:58
Well, it certainly works, thought it's true that UITextField doesn't declare that annotation. Maybe they forgot to add the annotation; it should be there anyway. – josema.vitaminew Mar 20 at 12:02

The safe way for performing this operation is as follows:

for(UIView *subView in searchBar.subviews) {
    if ([subView isKindOfClass:[UITextField class]]) {
        UITextField *searchField = (UITextField *)subView;
        searchField.font = [UIFont fontWithName:@"Oswald" size:11];
    }
}

Why is this safer than the accepted answer? Because it doesn't rely on the index of the UITextField staying constant. (it's also a cleaner for loop)

share|improve this answer
The only way that this code could break in a future update is if the search bar stops having the UITextField as a subview. But even then, it wouldn't crash. – NicolasMiari Jan 18 at 7:19

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.