Reputation: 3622
On iOS 7, setting the UISearchBar to be translucent isn't making the search bar translucent. Is there anything I'm not understanding it? I'm adding it to a UIViewController that is part of a UINavigationController. There's a UITableView aligning to the Top Layout Guide. The navigation bar is fine and has translucency, but the search bar is a solid color for some reason.
Upvotes: 0
Views: 1436
Reputation: 3171
See the new .searchBarStyle
property on UISearchBar. I suspect UISearchBarStyleMinimal
is what you're after.
Upvotes: 3