如何确定 UISearchDisplayController 的 searchResultsTableView 是否可见?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题。
This should do the trick.
如何使用 UISearchDisplayController 的委托方法?
有什么理由这些对你不起作用吗?
How about using the delegate methods for UISearchDisplayController?
Any reason these won't work for you?