UISearchController searchBar in tableHeaderView animating out of the screen

前端 未结 8 1413
南方客
南方客 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:02

    In Swift, try:

    override func viewDidLoad() {
        edgesForExtendedLayout = []
        searchController.hidesNavigationBarDuringPresentation = false
    
        // ...
    }
    

提交回复
热议问题