iBooks 搜索风格

发布于 2024-11-05 17:31:48 字数 105 浏览 4 评论 0原文

我想同时执行多个搜索操作,并在结果出现时更新 UITableView,类似于 iBooks 搜索。

困难的部分是在搜索进行时使表视图刷新显示。

任何建议将不胜感激。

I'd like to perform multiple search operations at the same time and update UITableView as results appear, similar to the iBooks search.

The hard part is to make the table view refresh the display while search is going on.

Any suggestions will be appreciated.

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

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

发布评论

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

评论(1

小嗷兮 2024-11-12 17:31:48

您应该在单独的线程中进行搜索,以使 UI 保持响应。当搜索完成并且 UITableView 的 dataSource 更新时,您应该调用:

[tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];

You should search in separate thread to UI remains responsive. When search has finished and dataSource of UITableView updated you should call:

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