1

我有一个 UITableViewController,它在导航栏中有一个 UISearchController。

当我点击搜索,下拉一次然后按取消时,我看到了一个奇怪的 UI 行为。

搜索控制器

我找不到发生这种情况的任何具体原因。这个问题不是每次都重现。当导航栏有一些按钮时,它会更频繁地发生,正如您在上面的 GIF 中看到的那样。

当我回到第一个视图控制器(没有任何导航栏按钮)并重复相同的步骤时,该问题在极少数情况下会重现。

仅当您在具有搜索控制器的 ViewController 中下拉时才会发生此问题。如果您使用结果控制器并在结果控制器中下拉,则不会重现此问题。

下面是示例应用程序中使用的代码。

import UIKit

class SearchViewController: UITableViewController {

    lazy var resultsController = ResultsVC()
    lazy var searchController = UISearchController(searchResultsController: resultsController)

    override func viewDidLoad() {
        super.viewDidLoad()

        configureSearchController()

        navigationItem.largeTitleDisplayMode = .always
        navigationController?.navigationBar.prefersLargeTitles = true
        navigationItem.title = "Search VC"
    }

    func configureSearchController() {
        navigationItem.searchController = searchController
        navigationItem.hidesSearchBarWhenScrolling = true
        searchController.obscuresBackgroundDuringPresentation = false
        searchController.hidesNavigationBarDuringPresentation = true
        searchController.searchResultsUpdater = resultsController
    }

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        tableView.deselectRow(at: indexPath, animated: true)
        navigationController?.pushViewController(SearchViewController(), animated: true)
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 50
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell()
        cell.textLabel?.text = "Searchable cell"
        return cell
    }
}

class ResultsVC: UITableViewController {

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 50
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell()
        cell.textLabel?.text = "Result cell"
        return cell
    }
}

extension ResultsVC: UISearchResultsUpdating {
    func updateSearchResults(for searchController: UISearchController) {
        print(searchController.searchBar.text)
    }
}

我尝试tableView.setContentOffet在 UISearchControllerDelegate 方法中使用更改 tableView 的内容偏移量willPresentSearchControllerwillDismissSearchController但是每个设备的 y 位置都不同,它不能成为通用修复。

PS:大多数模拟器不会出现这个问题。因此,请在您的手机中尝试相同的代码。

4

1 回答 1

0

这个问题可以通过设置来防止发生

searchController.obscuresBackgroundDuringPresentation = true

这意味着用户在点击搜索后无法滚动表格视图。但是,用户可以在结果控制器出现后滚动它。

于 2020-06-16T12:07:01.170 回答