如何处理 UISearchResultsTableView

发布于 2024-12-28 17:22:15 字数 634 浏览 0 评论 0 原文

我将 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

除了文档之外还有什么可以做的吗???请帮忙..

I am getting UISearchResultsTableView as tableView of

(void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView

How do I handle this. I can not refer UISearchResultsTableView on the documentation.

I initialized the search display controller from my view controller (which is an instance of UITableViewController) as describe on http://developer.apple.com/library/IOs/#documentation/UIKit/Reference/UISearchDisplayController_Class/Reference/Reference.html.

Is there any thing to do more than in documentation??? Please help..

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

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

发布评论

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

评论(1

梦魇绽荼蘼 2025-01-04 17:22:15

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.

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