如何确定 UISearchDisplayController 的 searchResultsTableView 是否可见?

发布于 2024-11-29 07:57:18 字数 292 浏览 4 评论 0原文

我的 UITableView 的标题视图中有一个 UISearchDisplayController。我想知道 UISearchDisplayController 的 searchResultsTableView 何时显示,以便我可以执行其他操作:

if(self.tableView == self.searchDisplayController.searchResultsTableView)

即使显示 searchResultsTableView 也始终返回 true 。我怎样才能弄清楚这一点?

I have a UISearchDisplayController that is in the headerview for my UITableView. I want to know when the UISearchDisplayController's searchResultsTableView is shown so I can do some other operation:

if(self.tableView == self.searchDisplayController.searchResultsTableView)

returns true all the time even when the searchResultsTableView is shown. How can I figure this out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情定在深秋 2024-12-06 07:57:18

这应该可以解决问题。

[self.searchDisplayController isActive]

This should do the trick.

[self.searchDisplayController isActive]
月下凄凉 2024-12-06 07:57:18

如何使用 UISearchDisplayController 的委托方法?

searchDisplayController:willShowSearchResultsTableView:
searchDisplayController:didShowSearchResultsTableView:
searchDisplayController:willHideSearchResultsTableView:
searchDisplayController:didHideSearchResultsTableView:

有什么理由这些对你不起作用吗?

How about using the delegate methods for UISearchDisplayController?

searchDisplayController:willShowSearchResultsTableView:
searchDisplayController:didShowSearchResultsTableView:
searchDisplayController:willHideSearchResultsTableView:
searchDisplayController:didHideSearchResultsTableView:

Any reason these won't work for you?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文