UISearchDisplayController - 我想要一个分组表

发布于 2024-11-16 18:37:44 字数 121 浏览 4 评论 0原文

我使用 XCode 4.2 中的界面生成器添加了一个 UISearchDisplayController,它自动添加了一个 UITableView。

问题是我希望将其分组表,但我找不到如何更改它。 有什么想法吗?

I added a UISearchDisplayController using the interface builder in XCode 4.2, and it added a UITableView automatically.

The problem is that i want it to be grouped table, but i couldn't find how to change it.
Got any ideas?

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

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

发布评论

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

评论(1

眼眸 2024-11-23 18:37:44

好吧,你无法改变它。

如果您想使用分组表,请放弃 UISearchDisplayController 并使用 UISearchBar 和新的 UITableView 实例的组合。您可以通过编程方式或使用Interface Builder 创建此表视图。

无论哪种方式,都将其附加到 searchTableView 属性并使其脱离视图层次结构。当搜索开始时,将其附加到视图层次结构并将其放置在原始表视图之上。

这将涉及大量额外的工作,但如果您想要一个分组搜索表,这就是正确的方法。

Well you can't change it.

If you want to use a grouped table, forgo the UISearchDisplayController and use a combination of UISearchBar and new UITableView instance. You can create this table view programmatically or using Interface Builder.

Either ways attach it to a searchTableView property and keep it off the view hierarchy. When the search begins, attach it to the view hierarchy and lay it over the original table view.

This will involve a good deal of additional work but if you want it a grouped search table, this is the way to go.

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