Black lines above and below searchController.searchBar with custom tint

225 Views Asked by At

enter image description here

If you are seeing black lines like in the image above when using

searchController.searchBar.barTintColor = YOUR_COLOR

try UISearchBarStyle.Minimal to make them disappear.

 searchController.searchBar.searchBarStyle = UISearchBarStyle.Minimal

enter image description here

Reported as bug 22668614.

1

There are 1 best solutions below

0
Matt Bearson On

Workaround included in original post.