ios – UICollectionView不能使用UISearchController?

在WWDC 2014年的“A Inside Inside Presentation Controllers”中,演示者展示了如何在UITableView中设置UISearchController.他们通过设置searchController的searchBar框架,然后将其设置为tableView的tableHeaderView来实现.不幸的是,UICollectionView没有相当于tableHeaderView.使用UISearchDisplayController,这将很简单:创建一个UISearchBar并将其添加自定义UICollectionView部分标题中,然后使用搜索栏初始化UISearchDisplayController.问题是,您无法使用UISearchBar初始化UISearchController,甚至可以设置searchBar,因为它是一个只读属性.我想我真正的问题是,我的选择是什么?在没有UISearchDisplayController或UISearchController的情况下是否有实现搜索的“好”方式?

解决方法

With UISearchDisplayController,this would be simple: create a UISearchBar and add it to a custom UICollectionView section header,then initialize the UISearchDisplayController with the search bar@H_301_8@

UISearchController中的搜索栏是为您创建的.在数据源方法中询问补充视图时@H_301_8@

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath

添加searchController.searchBar作为补充视图的子视图.别忘了打电话@H_301_8@

[searchController.searchBar sizeToFit]

为了给搜索栏适当的大小.@H_301_8@

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...