UISearchDisplayController 使用网络获取的数据

发布于 2024-08-02 05:56:23 字数 835 浏览 10 评论 0原文

我有一个 UITableViewController 子类,它呈现预设类别列表并获取每个类别的站点/url 列表。我想添加一个搜索功能,允许按网站名称进行搜索。

我想要的是有一个常用的搜索界面,它将启动一个搜索线程(将获取并处理结果),然后将其显示在表中。如果 UITableView 不是单一表单 xib(即它是一个搜索表视图),我已经修改了我的表委托以返回自定义单元格集:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"RSSCatalogCell";

    if(tableView != self.tableView)
        return [searchController tableView:tableView cellForRowAtIndexPath:indexPath];

    // ... usual cell initialization for categories
}

只要我的网络线程(从 生成 ) searchBarSearchButtonClicked:) 完成后,它要求搜索控制器表重新加载数据:

if(searchDisplayController.active)
    [searchDisplayController.searchResultsTableView reloadData];

但我仍然看到旧表(带有目录整体),但它似乎忽略了触摸。

I have a UITableViewController subclass that renders a list of pre-set categories and fetches a list of sites/urls for each of them. I want to add a search capability that would allow to search by a site name.

What I want is to have a usual search interface, that would start a search thread (that would fetch and process results) and then show it in the table. I've modified my table delegate to return custom set of cells if the UITableView is not the one form xib (i.e. it's a search table view):

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"RSSCatalogCell";

    if(tableView != self.tableView)
        return [searchController tableView:tableView cellForRowAtIndexPath:indexPath];

    // ... usual cell initialization for categories
}

As soon as my network thread (spawned from searchBarSearchButtonClicked:) finishes, it asks a search controller table to reload the data:

if(searchDisplayController.active)
    [searchDisplayController.searchResultsTableView reloadData];

But I still see the old table (with catalog entires), however it seem to ignore touches.

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

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

发布评论

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

评论(1

錯遇了你 2024-08-09 05:56:23

好吧,我已经解决了(我讨厌当你明确地向某个公共团体/论坛写下一个问题时,你可能会在花费几天的时间寻找之后很快找到自己的错误)。

问题出在 XIB 的一个错误连接上,上面的代码工作正常。

Ok, I've solved it (I hate that when you clearly write a question to some public group/forum you might quickly find your own bug after spending several days looking for it).

The problem was in one wrong connection in XIB, the above code is working perfectly.

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