iOS 9 searchBar disappears from table header view when UISearchController is active

后端 未结 13 1306
無奈伤痛
無奈伤痛 2020-12-07 20:37

The structure:

View1 (click a button) -> present modally (MyModalView: UITableViewController)

MyModalView has UISearchController embedded. The searchBar of U

13条回答
  •  星月不相逢
    2020-12-07 21:07

    I had to

    self.aNavigationController?.extendedLayoutIncludesOpaqueBars = true
    

    I found a similar question here but in my case it was not on the viewDidLoad method. I had to try different views until it worked. Now I can have both a custom navigation bar color and the search bar,

提交回复
热议问题