无法让 SearchController 与 TableView 一起显示

Can't get SearchController to show with TableView

我正在按照 raywenderlich.com 教程显示我的 table 的搜索栏,但我在任何地方都看不到它(是的,我向上滚动)

这是我的代码:

import UIKit

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, UISearchControllerDelegate, UISearchResultsUpdating {
    
    @IBOutlet weak var tableView: UITableView!        
    
    func updateSearchResults(for searchController: UISearchController) {
        let searchBar = searchController.searchBar
        filterContentForSearchText(searchBar.text!)
    }

    var isSearchBarEmpty: Bool {
      return searchController.searchBar.text?.isEmpty ?? true
    }

    func filterContentForSearchText(_ searchText: String) {
      filteredStrings = stockArr.filter { (string: String) -> Bool in
        return string.lowercased().contains(searchText.lowercased())
      }
      tableView.reloadData()
    }
    var filteredStrings: [String] = []

    var searchController : UISearchController!

    override func viewDidLoad() {
        super.viewDidLoad()
        tableView.dataSource = self
        tableView.delegate = self
        

        let searchController = UISearchController(searchResultsController: nil)

        searchController.searchResultsUpdater = self

        searchController.obscuresBackgroundDuringPresentation = false

        searchController.searchBar.placeholder = "Search Candies"

        navigationItem.searchController = searchController
        navigationItem.hidesSearchBarWhenScrolling = false
        
        definesPresentationContext = true
  
    }
}

请帮助我,我已经尝试了所有 Whosebug 解决方案,但没有任何效果,这段代码与我之前的正常 table 视图没有区别。

您可能正在使用 ViewController 而未将其嵌入 UINavigationController。您必须将它嵌入 UINavigationController 才能显示在 UINavigationBar 中。因此,在使用 ViewController 时,如果您以编程方式使用它,请按如下方式使用它。

UINavigationController(rootViewController: ViewController())

如果 ViewController 是在情节提要中创建的,则使用 Editor-> Embed In -> Navigation Controller.