Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UISearchBar clear background image

I have the following code for my UISearchBar:

 UISearchBar * searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 300, 44)];
    searchBar.placeholder = @"Search for a tag";
    searchBar.delegate = self;

The result is as follows:

enter image description here

I'd like to change the white background to a clear color. How do I do this? Basically I want the textField background color to be clear.

like image 764
adit Avatar asked Jun 01 '12 06:06

adit


1 Answers

If you are supporting iOS 5 and above just do:

[self.searchBar setBackgroundImage:[[UIImage alloc] init]];
like image 164
3lvis Avatar answered Nov 05 '22 19:11

3lvis