UISearchController searchBar in tableHeaderView animating out of the screen

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

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

8条回答
  •  爱一瞬间的悲伤
    2020-12-25 11:43

    Have you tried to set the hidesNavigationBarDuringPresentation to false? Solved my headache..

    self.searchController.hidesNavigationBarDuringPresentation = false;
    

    Putting the searchbar in the navigation bar gives a more solid user experience in my opinion (for iphone)

    self.navigationItem.titleView = self.searchController.searchBar;
    

提交回复
热议问题