UICollectionView设置header悬浮效果
2020-02-24 本文已影响0人
SunshineBrother
在iOS9.0后UICollectionView的头部视图也能像tableView的header一样出现悬浮挂住的效果。
UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
//header
flowLayout.sectionHeadersPinToVisibleBounds = YES;
//footer
flowLayout.sectionFootersPinToVisibleBounds = YES;