在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
UISearchController中的搜索栏是为您创建的.在数据源方法中询问补充视图时
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(Nsstring *)kind atIndexPath:(NSIndexPath *)indexPath
添加searchController.searchBar作为补充视图的子视图.别忘了打电话
[searchController.searchBar sizetoFit]
为了给搜索栏适当的大小.