如何处理 UISearchResultsTableView
我将 UISearchResultsTableView 作为
(void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView
我如何处理这个问题的 tableView 获取。我无法在文档中引用 UISearchResultsTableView 。
我从视图控制器(它是 UITableViewController 的实例)初始化了搜索显示控制器,如 http://developer.apple.com/library/IOs/#documentation/UIKit/Reference/UISearchDisplayController_Class/Reference/Reference.html。
除了文档之外还有什么可以做的吗???请帮忙..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UISearchResultsTableView 是 UITableView 的私有子类,这就是它不在文档中的原因。正如您粘贴的方法声明所示,您应该将 tableView 视为 UITableView。
您需要以通常的方式填充tableView(使用UITableViewDataSource方法,例如–tableView:cellForRowAtIndexPath:等)。通过从搜索显示控制器请求 [searchBar text] 来获取正在搜索的实际文本。
您可以通过实现 UISearchDisplayDelegate 方法。
这是一个总体概述,所有内容都记录在您提到的链接和相关文档中。如果您需要更具体的帮助,您将需要发布代码和更具体的问题。
UISearchResultsTableView is a private subclass of UITableView, which is why it's not in the documentation. As the method declaration you pasted in indicates, you should be treating tableView as a UITableView.
You need to populate the tableView in the usual manner (using the UITableViewDataSource methods, such as –tableView:cellForRowAtIndexPath:, etc.). Get the actual text being searched for by requesting [searchBar text] from the search display controller.
You can find out when a user has typed by implementing the UISearchDisplayDelegate methods.
That's a general overview, and it's all documented in the link you mentioned and related documents. If you would like more specific help you will need to post code and a more specific question.