在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]