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:

screencapture

link|improve this question

80% accept rate
can you show the image of the screen? – Sarah Feb 7 at 7:08
feedback

1 Answer

self.searchDisplayController.searchBar.layer.backgroundColor = [UIColor blueColor].CGColor;
link|improve this answer
I tried this, substituting my color from above, but it didn't seem to make any difference. – janineanne Feb 8 at 4:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.