UISearchDisplayController - 我想要一个分组表
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你无法改变它。
如果您想使用分组表,请放弃
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 ofUISearchBar
and newUITableView
instance. You can create this table view programmatically or usingInterface 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.