将 searchDisplayController 表视图样式更改为分组?
我有一个搜索 UITableView
的 searchDisplayController
。
输入搜索词后,我可以看到另一个包含搜索结果的 UITableView
。但是,我希望这个 UITableView
是分组的,而不是普通的(就像默认情况下一样)。
我该怎么做?
I have a searchDisplayController
that searches a UITableView
.
After entering the search terms, I can see another UITableView
that contains the search results. However, I want this UITableView
to be GROUPED, not PLAIN (like it is by default).
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这对我有用(iOS 5.0):
This worked for me (iOS 5.0):
如果 - 像我一样 - 你认为普通的 TableView 太丑了,你也可以放弃使用 SearchDisplayController。
我只是:
[self.resultTableView reloadData]
;在这里你可以找到我从委托中使用的所有方法
毕竟,最简单的解决方案往往是最好的......
If - like me - you think the plain TableView was way too ugly, you can also abandon the use of SearchDisplayController.
I just:
[self.resultTableView reloadData]
;Here you can find all the method I used from the delegates
After all, the simplest solution is often the best...
这对我有用:
创建一个扩展 UISearchDisplayController 的类:
然后使用 IB 将
UISearchDisplayController
添加到您的表中,并在 Identity Inspector 中将其自定义类更改为RVSearchDisplayController
。This works for me:
Create a class which extends UISearchDisplayController:
Then add a
UISearchDisplayController
to your table using IB, and change its Custom Class toRVSearchDisplayController
in Identity Inspector.您可以尝试创建 UISearchDisplayController 的子类并使 searchResultsTableView
在任何 .h 文件中可搜索添加:
然后只需使用 YourUISearchDisplayController 而不是 od UISearchDisplayController。
注意:您可能必须使用(非原子,保留),(非原子,分配)或(非原子,复制)。我不太确定
You could try to create a subclass of UISearchDisplayController and make searchResultsTableView searchable
in any .h file add:
Then just use YourUISearchDisplayController instead od UISearchDisplayController.
Note: you might have to use (nonatomic, retain), (nonatomic, assign), or (nonatomic, copy). I'm not really sure
这是不可能的,因为
searchResultsTableView
属性是readonly
。This is not possible as the
searchResultsTableView
property isreadonly
.重写
-searchResultsTableView
不起作用,因为UISearchDisplayController
直接访问其表视图实例变量,而不调用该方法。UISearchDisplayController
的指定初始值设定项似乎是私有方法-initWithSearchBar:contentsController:searchResultsTableViewStyle:
,它设置_searchResultsTableViewStyle
实例变量。该实例变量用于创建搜索结果表视图。公共初始值设定项调用此方法,并传递UITableViewStylePlain
。直接调用私有指定初始值设定项或设置实例变量可能会导致应用程序被 App Store 拒绝,因此您可以尝试覆盖公共初始值设定项并调用
Overriding
-searchResultsTableView
won't work, becauseUISearchDisplayController
accesses its table view instance variable directly, without calling the method.The designated initializer for
UISearchDisplayController
appears to be a private method,-initWithSearchBar:contentsController:searchResultsTableViewStyle:
, which sets the_searchResultsTableViewStyle
instance variable. This instance variable is used in creating the search results table view. The public initializer calls this method, passingUITableViewStylePlain
.Directly calling the private designated initializer or setting the instance variable would likely get an application rejected from the App Store, so you might instead try overriding the public initializer and calling