ios – UICollectionView不能使用UISearchController?

前端之家收集整理的这篇文章主要介绍了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

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

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

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

[searchController.searchBar sizeToFit]

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

猜你在找的iOS相关文章