collectionView-自定义布局

2017-08-02  本文已影响27人  当优秀成为习惯

自定义布局 - 继承UICollectionViewFlowLayout

重写prepareLayout方法

重写layoutAttributesForElementsInRect:方法

重写shouldInvalidateLayoutForBoundsChange:方法

重写targetContentOffsetForProposedContentOffset:withScrollingVelocity:方法

类似tableviewhead view悬浮置顶的方法

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

猜你喜欢

热点阅读