UISearchBarController iOS 11 issue - SearchBar and scope buttons overlap

Nitish picture Nitish · Sep 22, 2017 · Viewed 7.4k times · Source

Referred here and here. No answer in first link. In the second link, though the answer is not accepted, but the link to apple developer forum gives error.

Before iOS 11 :

enter image description here

iOS 11 :

enter image description here

Note : Same device same code.
Also, this would mean, all apps using this feature have to be republished ?

Answer

Rodge picture Rodge · Oct 19, 2017

Adding these lines fixed it for me:

override func viewDidLayoutSubviews() {
    self.searchController.searchBar.sizeToFit()
}