UISearchBar clear background image
ios, ipad, iphone, objective-c, uisearchbar
Solution
Make transparent Image, and use that image with below code.
[search setSearchFieldBackgroundImage:[UIImage imageNamed:@"bg_search.png"] forState:UIControlStateNormal];
Problem
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: 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.