How to center a SearchBar in the new navigationItem.searchController?

Viewed 312

This looks ugly. I want to implement the new search controller for IOS 11 in the navigationItem.searchContoller space, however there is a large gap at the bottom. How do I get rid of this ugly gap?

enter image description here

1 Answers

try this

searchController.searchBar.searchFieldBackgroundPositionAdjustment = UIOffset(horizontal: 0, vertical: 8)
Related