UICollectionView设置header悬浮效果

来源:互联网 发布:网络推广培训计划 编辑:程序博客网 时间:2024/04/28 07:16

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

 UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];    //header    flowLayout.sectionHeadersPinToVisibleBounds = YES;    //footer    flowLayout.sectionFootersPinToVisibleBounds = YES;
0 0
原创粉丝点击