在 NavigationBar 中打开 UISearchController 时,整个应用程序冻结

Whole app freezes, when opening UISearchController in NavigationBar

我正在制作一个包含加密货币列表的应用程序。应该能够在这 3 个过滤列表(BTC、ETH、USD)中进行搜索。我唯一的问题是搜索栏。

只要我按下 "magnifying glass" 图标,搜索栏就会出现,但整个应用程序会冻结。我无法按 "Cancel",在栏中键入,关闭它并移动 UITableView。我不明白这种行为的原因。

var searchController : UISearchController!

@IBAction func searchingButton(_ sender: Any) {
    searchController = UISearchController(searchResultsController: nil)
    searchController.delegate = self
    searchController.searchBar.delegate = self
    searchController.searchBar.placeholder = "All currency pairs"
    searchController.hidesNavigationBarDuringPresentation = false
    searchController.searchResultsUpdater = self
    definesPresentationContext = true
    navigationItem.searchController = self.searchController
    navigationItem.hidesSearchBarWhenScrolling = false

    searchButton.isHidden = true

    present(searchController, animated: true, completion: nil)
}


extension ViewController:  UISearchControllerDelegate {
    func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
        navigationItem.searchController = nil
        navigationController?.view.setNeedsLayout()
        navigationController?.view.layoutIfNeeded()
        self.indexChange(self.segmentedControl!)
    }
}

请帮我解决这个问题。如果需要,将提供更多代码。

嗯,这很奇怪,但清理项目和重新启动系统很有帮助。