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

后端 未结 13 1307
無奈伤痛
無奈伤痛 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:12

    I don't have a navigation bar in this place of an app. None of other SO posts helped me, so I've fixed it this way:

    - (void)layoutSubviews
    {
        [[[self searchController] searchBar] sizeToFit];
    }
    

提交回复
热议问题