UICollectionView设置header悬浮效果

在iOS9.0后UICollectionView的头部视图也能像tableView的header一样出现悬浮挂住的效果。

 UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
    //header
    flowLayout.sectionHeadersPinToVisibleBounds = YES;
    //footer
    flowLayout.sectionFootersPinToVisibleBounds = YES;

你可能感兴趣的:(UICollectionView设置header悬浮效果)