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.