如何控制 UISearchDisplayController 的 searchResultsTableView?
我想知道如何控制 UISearchDisplayController
使用的表视图。您无法覆盖 UISearchDisplayController
的 searchResultsTableView
属性,因为它是只读属性。
我尝试通过自定义 UITableView
覆盖 searchResultsTableView
。这只有效一次,但一旦您尝试第二次搜索,真正的 searchResultsTableView
就会再次出现在顶部。 (我的意思是,您在 searchBar
中输入一些文本,您的自定义表格视图位于顶部并显示搜索结果,然后按取消按钮。现在,如果您重复此操作,您的自定义表格不会显示,并且 UISearchDisplayController 的 searchResultTableView
将位于顶部)。
当然,你可以尝试没有UISearchDisplayController
,但我指望这个类的优点,我只是想自定义tableView
。
I wonder how to take control over the table view that is used by the UISearchDisplayController
. You can't overwrite the searchResultsTableView
property of the UISearchDisplayController
, because it is a read-only property.
I've tried to overlay the searchResultsTableView
by a custom UITableView
. That works just once, but as soon as you try a second search, the real searchResultsTableView
is on top again. (I mean, you type in some text in the searchBar
, your custom table view is on top and displays the search results, afterwards you press the cancel button. Now, if you repeat this, your custom table won't be displayed and the searchResultTableView
of the UISearchDisplayController wil be on top).
Of course, you can try it without a UISearchDisplayController
, but I count on the advantages of this class, I just want to customize the tableView
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法设置 searchResultsTableView,但可以在适当的委托方法中操作它:
You cannot set the searchResultsTableView, but you can manipulate it in the appropriate delegate method:
您在
UISearchDisplayController
上有一个TableViewDataSource
属性,此数据源生成UITableViewCell
。实现UITableViewDataSource
协议,您将可以在方法中控制 tableView 的自定义:<代码>
You have a
TableViewDataSource
property on theUISearchDisplayController
, this data source produces theUITableViewCell
. Implement theUITableViewDataSource
protocol and you'll have the control over the customization of the tableView in the method :