My xib contains a UITableView and a UISearchDisplayController. I'm setting colors and having a bit of trouble with the search bar.
I'm setting its color like this:
self.searchDisplayController.searchBar.tintColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.5];
The section headers in the table are set to the same color.
There are three problems:
- there's a noticeable (probably 1 px) white stripe between the top of the search bar and the nav bar
- there's a similar black stripe between the bottom of the search bar and the first section header in the table
- even though the search bar and section headers are the same color, the search bar appears slightly darker
Is there a technique for making this look right/better?
Edit: here's what it looks like:
