UISearchBarController iOS 11 issue - SearchBar and scope buttons overlap

后端 未结 7 866
误落风尘
误落风尘 2021-01-04 07:26

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 i

7条回答
  •  走了就别回头了
    2021-01-04 07:42

    Adding these lines fixed it for me:

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

提交回复
热议问题