UISearchController searchBar in tableHeaderView animating out of the screen

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

    Try this out:

    First you need to delegate the

    UISearchControllerDelegate

    For Swift

    func willPresentSearchController(searchController: UISearchController) {
        self.navigationController?.navigationBar.translucent = true
    }
    
    func willDismissSearchController(searchController: UISearchController) {
        self.navigationController?.navigationBar.translucent = false
    }
    

提交回复
热议问题