UISearchController searchBar in tableHeaderView animating out of the screen

前端 未结 8 1487
南方客
南方客 2020-12-25 11:13

I have a UISearchController with a UITableViewController as a searchResultsController, the UISearchBar of this sear

8条回答
  •  星月不相逢
    2020-12-25 12:03

    In my case the searchBar was in the tableHeaderView and there was no NavigationBar on screen. But the SearchBar still animated upwards overlapping the status bar when becoming active. The solution to prevent this was to set:

    searchController.hidesNavigationBarDuringPresentation = false
    

    Which is weird because as I said the view controller was not using a navigation bar.

提交回复
热议问题