UICollectionView设置header悬浮效果

2016-10-18  本文已影响261人  小雨雨儿

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

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

猜你喜欢

热点阅读