gpt4 book ai didi

iphone - 如何控制 UISearchDisplayController 的 searchResultsTableView?

转载 作者:行者123 更新时间:2023-12-03 18:44:05 25 4
gpt4 key购买 nike

我想知道如何控制 UISearchDisplayController 使用的 TableView 。您无法覆盖 UISearchDisplayControllersearchResultsTableView 属性,因为它是一个只读属性。

我尝试通过自定义 UITableView 覆盖 searchResultsTableView。这只有效一次,但一旦您尝试第二次搜索,真正的 searchResultsTableView 就会再次出现在顶部。 (我的意思是,您在 searchBar 中输入一些文本,您的自定义表格 View 位于顶部并显示搜索结果,然后按取消按钮。现在,如果您重复此操作,您的自定义表格不会显示,并且 UISearchDisplayController 的 searchResultTableView 将位于顶部)。

当然,你可以尝试不使用UISearchDisplayController,但我指望这个类的优点,我只想自定义tableView

最佳答案

您无法设置 searchResultsTableView,但可以在适当的委托(delegate)方法中操作它:

-(void)searchDisplayController:(UISearchDisplayController *)controller didLoadSearchResultsTableView:(UITableView *)tableView {
tableView.backgroundColor = self.tableView.backgroundColor;
tableView.separatorColor = self.tableView.separatorColor;
...

关于iphone - 如何控制 UISearchDisplayController 的 searchResultsTableView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2193094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com