UISearchDisplayController,UITableView 的引用是什么?
如果我有多个 UITableView 和一个带有 UISearchDisplayController 的 UISearchBar,在 UITableView 委托和数据源方法中,如何获取对用于搜索的 UITableView 的引用?谢谢。
If I have multiple UITableViews, and a UISearchBar with UISearchDisplayController, in the UITableView delegate and datasource methods, how do I get a reference to the UITableView for the Search? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过连接到 NIB 文件的插座或以编程方式创建 searchBar 时获取对 UISearchDisplayController 的引用。获得引用后,在所有数据源和委托方法中,您只需检查正在传递的 tableView 并采取适当的操作。例如:
以下是您如何创建搜索栏并获取对 UISearchDisplayController 的引用
,
然后将其添加到您的 tableView 中,如下所示:
祝您好运
get a reference to your UISearchDisplayController either via an outlet connected to your NIB file or when you create the searchBar programmatically. Once you have the reference, in all of your datasource and delegate methods you can just check to see which tableView is being passed and act appropriately. For example:
here is how you might create the search bar and get the reference to the UISearchDisplayController
}
then add it to your tableView like this:
Good luck