UITableView content overlaps Status Bar when UISearchBar is active

后端 未结 8 642
北海茫月
北海茫月 2021-02-05 02:17

I have a UITableViewController with a UISearchBar and UISearchDisplayController. That exists inside a Container View in a UIViewController which is in a UINavigationController.

8条回答
  •  你的背包
    2021-02-05 02:51

    I had the same problem:

    - (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller
    {
        controller.searchBar.searchBarStyle = UISearchBarStyleDefault; // Used to cover UIStatusBar
    }
    
    - (void)searchDisplayControllerWillEndSearch:(UISearchDisplayController *)controller
    {
        controller.searchBar.searchBarStyle = UISearchBarStyleMinimal; // Used not to show top and bottom separator lines
    }
    

提交回复
热议问题