Reputation: 2527
This is driving me crazy, I can not figure out what that black line is behind my search bar.
My view hierarchy is a UINavigationController -> UITableViewController with a SearchDisplayController, and I customize the appearance of the search bar with the following code:
[[UISearchBar appearance] setImage:[ApplicationStyle searchBarIconImage] forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
[[UISearchBar appearance] setBackgroundImage:[ApplicationStyle searchBarImage]];
[[UISearchBar appearance] setSearchFieldBackgroundImage:[ApplicationStyle searchBarFieldImage] forState:UIControlStateNormal];
The image I am using for the background is 640px x 88px and it is not transparent by any means. Any ideas what this could be?
Upvotes: 1
Views: 1352
Reputation: 11042
Set the search bar's clipsToBounds
property to YES
.
Relevant SO questions:
Upvotes: 1