以编程方式将 UISearchController 添加到 swift 中的 UITableView header 2

Programmatically add a UISearchController to a UITableView header in swift 2

在我的视图控制器(基于故事板)的先前版本中,搜索栏运行良好。 在 100% 以编程方式定义的当前版本(我删除了所有故事板引用)中,搜索栏已经消失。 我试图了解问题所在,但没有成功。有什么想法吗?

这是错误的代码片段:

let resultSearchController = UISearchController()

override public func viewDidLoad() {
    super.viewDidLoad()

    // No nav bar
    navigationController?.navigationBar.hidden = true

    // — Add table view
    view.addSubview(tableView)
    tableView.delegate = self
    tableView.dataSource = self
    tableView.translatesAutoresizingMaskIntoConstraints = false
    tableView.leftAnchor.constraintEqualToAnchor(view.leftAnchor, constant: 0).active = true
    tableView.rightAnchor.constraintEqualToAnchor(view.rightAnchor, constant: 0).active = true
    tableView.bottomAnchor.constraintEqualToAnchor(view.bottomAnchor, constant: 0).active = true


    // Add search bar as a the table header

    resultSearchController.dimsBackgroundDuringPresentation = false
    resultSearchController.definesPresentationContext = true
    resultSearchController.hidesNavigationBarDuringPresentation = false

    resultSearchController.searchResultsUpdater = self
    resultSearchController.searchBar.sizeToFit()
    resultSearchController.searchBar.delegate = self
    tableView.tableHeaderView = resultSearchController.searchBar

    /// Add refresh control
    refreshControl.attributedTitle = NSAttributedString(string: "Pull to refresh")
    refreshControl.addTarget(self, action: #selector(BigHeadViewController.refreshTable), forControlEvents: UIControlEvents.ValueChanged)
    tableView.addSubview(refreshControl)  
}

我认为问题可能出在第一行。您必须将 "searchResultsController" 指定为初始化的一部分 - 即使它为 nil(以进行搜索)。尝试

let resultSearchController = UISearchController(searchResultsController:nil)