iOS - UICollectionView &&

作者: LeoDavid | 来源:发表于2016-06-16 17:16 被阅读1333次

    1.基本介绍

    UICollectionView的基础是UITableView, UITableView 大家肯定用得很熟悉,UITableView中的只支持单排列表,没有办法支持网格列表,在IOS6 中就出了UICollectionView,UICollectionView能更好的支持网格实图

    2.使用方法

    UICollectionView与UITableView基本相似,不同的地方就是UICollectionViewFlowLayout,UICollectionView的delegate和UITableView基本相似。下面来说一下不同的地方

    (1)UICollectionViewFlowLayout

    a. UICollectionViewFlowLayout的属性


    UICollectionViewFlowLayout可以用属性设置UICollectionViewCell显示的大小,间隔,排列方式等。

    b. UICollectionViewFlowLayout的代理

    当然你也可以设置利用代理方法UICollectionViewDelegateFlowLayout,

    - (CGSize)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath*)indexPath;

    每一个cell的大小

    - (UIEdgeInsets)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section;

    //设置每组的cell的边界,

    - (CGFloat)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section;

    //cell的最小行间距

    - (CGFloat)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section;

    //cell的最小列间距

    c. UICollectionViewLayout是一个抽象的类型,所有在使用的时候可以使用它的子类UICollectionViewFlowLayout(IOS提供),或者你也可以选择重写一个UICollectionViewLayout,下面来简单说一下UICollectionViewLayout

    - (CGSize)collectionViewContentSize; //返回内容尺寸

    返回自定义的内容尺寸(必须实现

    - (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath;//返回对应于indexPath的位置的cell的布局属性

    - (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect;//返回rect中的所有的元素的布局属性,返回的是包含UICollectionViewLayoutAttributes的NSArray

    -(BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds //当边界发生改变时,是否应该刷新布局。如果YES则在边界变化(一般是scroll到其他地方)时,将重新计算需要的布局信息

    UICollectionViewLayout里面,首先-(void)prepareLayout将被调用,之后-(CGSize) collectionViewContentSize将被调用,接着-(NSArray*)layoutAttributesForElementsInRect:(CGRect)rect被调用

    相关文章

      网友评论

      本文标题:iOS - UICollectionView &&

      本文链接:https://www.haomeiwen.com/subject/bqbmdttx.html