UICollectionViewFlowLayout的自定義探究

ios開(kāi)發(fā)中桥胞,UICollectionView是一個(gè)極其重要的組件恳守,我們通過(guò)自定義UICollectionViewFlowLayout可以實(shí)現(xiàn)一些極其復(fù)雜的布局考婴。

項(xiàng)目demo地址為:
demo地址
這次主要實(shí)現(xiàn)的布局主要有以下三種:

-不規(guī)則高度瀑布流兩列排序


不規(guī)則高度瀑布流兩列分布

-瀑布流不規(guī)則高度多列排列


寬度一定,三列排列的情況

寬度一定催烘,多列排列的情況

-橫向滑動(dòng)第一個(gè)cell放大
橫向滑動(dòng)第一個(gè)cell放大

主要介紹這三種布局通過(guò)自定義UICollectionViewFlowLayout如何實(shí)現(xiàn)沥阱,demo的GitHub鏈接放在文末

瀑布流不規(guī)則高度兩列布局

在demo中的實(shí)現(xiàn)的文件名為firstViewController.m和waterFlowLayout.m,定義一個(gè)array數(shù)組伊群,用于保存不規(guī)則的高度

@property (nonatomic, strong) NSMutableArray *array;//用于存儲(chǔ)高度數(shù)據(jù)
- (NSMutableArray *)array {
    if (_array) {
        return _array;
    }
    _array = [NSMutableArray arrayWithObjects:@(100),@(150),@(150),@(50),@(130),@(180),@(200),@(100),@(110),@(200), nil];
    return _array;
}

總共10個(gè)高度數(shù)據(jù)喳钟,這個(gè)可以自己定義,寬度通過(guò)計(jì)算得到,使其剛好可以放下兩列數(shù)據(jù)

代碼如下

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    float width = self.view.bounds.size.width - 10 - 10 - 10;//10分別為左邊劇、右邊距以及minimumInteritemSpacing
    float height = [[self.array objectAtIndex:indexPath.row] floatValue];
    return CGSizeMake(width / 2, height);
}

我們先使用UICollectionViewFlowLayout看一下實(shí)現(xiàn)的效果圖


image.png

這種布局里面有很多空白腌闯,看上去很不舒服驮吱,我們想的是將其填滿(mǎn),所以需要自定義UICollectionViewflowlayout實(shí)現(xiàn)酬蹋,在其中我們需要使用到的自定義的方法的作用

//初始化自定義的flowLayout
- (void)prepareLayout {
    //必須調(diào)用super
    [super prepareLayout];
}
//滑動(dòng)時(shí)會(huì)時(shí)時(shí)調(diào)用此方法 改變布局
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
}
//替換最終滑動(dòng)的contentOffset, proposedContentOffset是預(yù)期滑動(dòng)停止的位置
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity {
}
// 當(dāng)collectionView bounds改變時(shí)及老,是否重新布局
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {
    return YES;
}
//返回collectionView的最終大小
- (CGSize)collectionViewContentSize {
}

自定義flowLayout參考鏈接
為了實(shí)現(xiàn)瀑布流排列,我們需要知道每一行排列后第一列和第二列的最大的y值范抓,因?yàn)橹挥袃闪薪径瘢晕覀兛梢酝ㄟ^(guò)奇偶判斷來(lái)進(jìn)行實(shí)現(xiàn)(下面多列時(shí)會(huì)使用其他的思路,也適合于兩列的情況)

新建一個(gè)文件繼承自UICollectionViewFlowLayout,命名為waterFlowLayout

在.h文件中定義一個(gè)繼承自UICollectionViewDelegateFlowLayout的協(xié)議WaterFlowLayoutDelegate

并且

@property (nonatomic, weak) id<WaterFlowLayoutDelegate> delegate;

.h文件中定義一些屬性

@property (nonatomic, strong) NSMutableArray<UICollectionViewLayoutAttributes *> *itemAttributes;//存儲(chǔ)各個(gè)cell的屬性
@property (nonatomic) CGFloat xOffset;
@property (nonatomic) CGFloat yOffset;
@property (nonatomic) CGFloat maxOddY;//奇數(shù)時(shí)最大的y
@property (nonatomic) CGFloat maxEvenY;//偶數(shù)時(shí)最大的y

在.m文件中

- (void)prepareLayout {
   [super prepareLayout];
    
    //初始化定義的屬性
    self.scrollDirection = UICollectionViewScrollDirectionVertical;//豎直方向滑動(dòng)
    self.itemAttributes = [NSMutableArray array];
    self.xOffset = 0;
    self.yOffset = 0;
    self.maxOddY = 0;
    self.maxEvenY = 0;

   //獲取UICollectionView的一些基本屬性
   //獲取元素個(gè)數(shù)
   NSInteger count = [self.collectionView numberOfItemsInSection:0];
   //獲取collectionView的組邊距
   UIEdgeInsets sectionEdgeInsets = [self.delegate collectionView:self.collectionView layout:self insetForSectionAtIndex:0];
   //自定義屬性賦初值
   self.xOffset = sectionEdgeInsets.left;
   self.yOffset = sectionEdgeInsets.top;
self.maxOddY = self.yOffset;
   self.maxEvenY = self.yOffset;
  //對(duì)于每個(gè)cell
   for (int i = 0; i < count; i++) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
        //獲取對(duì)應(yīng)的cell的大小
        CGSize itemSize = [self.delegate collectionView:self.collectionView layout:self sizeForItemAtIndexPath:indexPath];
        if (i % 2 == 0) {
            //如果是偶數(shù)列匕垫,即左邊這列僧鲁,因?yàn)閕從0開(kāi)始的,初始的xoffset設(shè)置為左邊距象泵,初始的yOffset設(shè)置為距離頂部的邊距
            self.xOffset = sectionEdgeInsets.left;
            self.yOffset = self.maxEvenY;
        } else {
           //如果為奇數(shù)列寞秃,即右邊這列,xOffset為左邊距+cell的寬度+cell之間的間距
            self.xOffset = sectionEdgeInsets.left + itemSize.width + self.minimumInteritemSpacing;
            self.yOffset = self.maxOddY;
        }
        //獲取對(duì)應(yīng)的indexPath的cell的屬性
        UICollectionViewLayoutAttributes *attributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
        //給cell賦值新的frame
        attributes.frame = CGRectMake(self.xOffset, self.yOffset, itemSize.width, itemSize.height);
        [self.itemAttributes addObject:attributes];
         
        if (i % 2 == 0) {
           //偶數(shù)列即左邊這列偶惠,maxEvenY最大的y偏移為初始的偏移maxEvenY + cell的高度 + cell豎向之間的距離
            self.maxEvenY = self.maxEvenY + itemSize.height +
            self.minimumLineSpacing;
        } else {
       //奇數(shù)列中春寿,最大偏移同上
            self.maxOddY = self.maxOddY + itemSize.height + self.minimumLineSpacing;
        }
    }
}

在上面中,兩列分別使用maxEvenY 和maxOddY來(lái)記錄兩邊的最大y偏移,并且對(duì)每個(gè)cell重新計(jì)算frame忽孽,存儲(chǔ)到itemAttributes中绑改,接下來(lái)只要返回這個(gè)itemAttributes即可。

- (nullable NSArray<__kindof UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
    return self.itemAttributes;
}

這樣之后兄一,我們運(yùn)行之后的效果圖為


collectionView的底部有很大的剩余

我們可以看到厘线,在滑到底部時(shí),collectionView會(huì)有很大的剩余出革,為了解決這個(gè)問(wèn)題皆的,我們需要重新限制collectionView的大小,在自定義flowLayout中

- (CGSize)collectionViewContentSize {
    //maxOddY和maxEvenY正好是我們計(jì)算y方向的偏移量蹋盆,我們?nèi)∑渥畲笾?    float height = MAX(self.maxOddY, self.maxEvenY);
    return CGSizeMake(self.collectionView.bounds.size.width, height);
}

之后運(yùn)行费薄,得到的就是我們下面的效果圖


image.png

不規(guī)則的寬度和高度的排列

上面講了兩列的排列硝全,通過(guò)奇偶來(lái)實(shí)現(xiàn)的,有很大的局限性楞抡,下面講的是:寬度固定伟众,但是不是兩列,是多列的情況下召廷,高度不固定的實(shí)現(xiàn)凳厢,文末會(huì)付上相應(yīng)的github地址,其中的實(shí)現(xiàn)文件為secondViewController.m和waterFlowLayoutNew.m

我們首先在secondViewController中定義數(shù)組竞慢,分別存放自定義高度

@property (nonatomic, strong) NSMutableArray *heightArray;//用于存儲(chǔ)高度數(shù)據(jù)
- (NSMutableArray *)heightArray {
    if (_heightArray) {
        return _heightArray;
    }
    _heightArray = [NSMutableArray arrayWithObjects:@(100),@(150),@(150),@(50),@(130),@(180),@(200),@(100),@(110),@(200), nil];
    return _heightArray;
}

對(duì)于每個(gè)collectionViewCell的大小設(shè)置為:

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    NSInteger count = 3;//每行排列的cell的個(gè)數(shù)
    float width = self.view.bounds.size.width - 10 * 2  - 10 * (count - 1);
    float height = [[self.heightArray objectAtIndex:indexPath.row] floatValue];
    return CGSizeMake(width / count, height);
}

通過(guò)count設(shè)置自定義的列數(shù)(這里以3列為例子先紫,后面只需修改該數(shù)值即可)

初始時(shí),使用UICollectionViewFlowLayout,此時(shí)的布局效果如下:


使用UICollectionViewflowLayout的布局效果

這個(gè)布局很顯然不滿(mǎn)足我們的要求,通過(guò)自定義flowLayout實(shí)現(xiàn)相應(yīng)的效果

新建一個(gè)繼承自UICollectionViewLayout的類(lèi)筹煮,命名為waterFlowLayoutNew,在該類(lèi)中遮精,定義一個(gè)協(xié)議繼承自UICollectionViewDelegateFlowLayout,代碼如下:

@protocol WaterFlowLayoutNewDelegate <UICollectionViewDelegateFlowLayout>


@end
@property (nonatomic, weak) id<WaterFlowLayoutNewDelegate> delegate;

然后定義相應(yīng)的屬性

//每個(gè)cell的屬性數(shù)組
@property (nonatomic, strong) NSMutableArray<UICollectionViewLayoutAttributes *> *itemAttributes;
@property (nonatomic) CGFloat xOffset;
@property (nonatomic) CGFloat yOffset;
//每一行的個(gè)cell的個(gè)數(shù)
@property (nonatomic) NSInteger perLineCount;

在.m文件中败潦,

- (void)prepareLayout {
    [super prepareLayout];
    
    //初始化定義的屬性
    self.scrollDirection = UICollectionViewScrollDirectionVertical;
    self.itemAttributes = [NSMutableArray array];
    self.xOffset = 0;
    self.yOffset = 0;
    
    //獲取相應(yīng)的collectionView的屬性
    NSInteger itemCount = [self.collectionView numberOfItemsInSection:0];
    UIEdgeInsets sectionInsets = [self.delegate collectionView:self.collectionView layout:self insetForSectionAtIndex:0];
    self.xOffset = sectionInsets.left;
    self.yOffset = sectionInsets.top;
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    CGSize size = [self.delegate collectionView:self.collectionView layout:self sizeForItemAtIndexPath:indexPath];
    //因?yàn)閏ell的寬度是固定的(我們自定義的寬度都是一樣的本冲,現(xiàn)在就是處理的是寬度固定、高度不固定的多列排列)劫扒,所以我們可以求出每行的cell個(gè)數(shù)
    NSInteger count = floor (self.collectionView.bounds.size.width - sectionInsets.left - sectionInsets.right + self.minimumInteritemSpacing) / (size.width + self.minimumInteritemSpacing);
    self.perLineCount = count;
    
    //定義一個(gè)數(shù)組檬洞,用于存儲(chǔ)每行每一個(gè)cell的yOffset,因?yàn)槊總€(gè)cell的高度不同沟饥,所以下一行的cell布局需要用到它
    NSMutableArray *yOffsetArray = [NSMutableArray arrayWithCapacity:self.perLineCount];
    for (int i = 0; i < itemCount;i++) {
        //獲取每一個(gè)cell的大小
        CGSize itemSize = [self.delegate collectionView:self.collectionView layout:self sizeForItemAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
        //當(dāng)這一行還可以放下cell時(shí)
        if (self.xOffset + sectionInsets.right + itemSize.width <= self.collectionView.bounds.size.width) {
            UICollectionViewLayoutAttributes *attributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
            //當(dāng)布局的不是第一行的時(shí)候
            if (yOffsetArray.count == self.perLineCount) {
                 //yOffset為同一列上一行的yOffset偏移量添怔,存儲(chǔ)在數(shù)組中 + 行與行之間的間距
                 self.yOffset = [[yOffsetArray objectAtIndex:(i % self.perLineCount)] floatValue] + self.minimumLineSpacing;
            }
            attributes.frame = CGRectMake(self.xOffset, self.yOffset, itemSize.width, itemSize.height);
            //存儲(chǔ)cell的屬性
            [self.itemAttributes addObject:attributes];
            //下一個(gè)cell的xOffset
            self.xOffset = self.xOffset + itemSize.width + self.minimumInteritemSpacing;
            if (yOffsetArray.count < self.perLineCount) {
                //布局第一行時(shí)yOffset為空,沒(méi)法使用replace贤旷,所以使用addObject
                [yOffsetArray addObject:@(self.yOffset + itemSize.height)];
            } else {
                //布局第二行及往后澎灸,數(shù)組不為空,直接替換相應(yīng)的數(shù)組對(duì)象 
                [yOffsetArray replaceObjectAtIndex:(i % self.perLineCount) withObject:@(self.yOffset + itemSize.height)];
            }
        } else {
            //當(dāng)這一行放不下時(shí)遮晚,需要換行放置
            self.xOffset = sectionInsets.left;
            //從數(shù)組中獲取上一行同一列的yoffset + 行與行之間的間距
            self.yOffset = [[yOffsetArray objectAtIndex:(i % self.perLineCount)] floatValue] + self.minimumLineSpacing;
            UICollectionViewLayoutAttributes *attributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
            attributes.frame = CGRectMake(self.xOffset, self.yOffset, itemSize.width, itemSize.height);
            //存儲(chǔ)cell的屬性
            [self.itemAttributes addObject:attributes];
            //下一個(gè)cell的xOffset
            self.xOffset = self.xOffset + itemSize.width + self.minimumInteritemSpacing;
            self.yOffset = self.yOffset + itemSize.height;
            //更新yOffsetArray數(shù)組
            [yOffsetArray replaceObjectAtIndex:(i % self.perLineCount) withObject:@(self.yOffset)];
        }
    }

}

上面先算出每一行的cell的個(gè)數(shù)性昭,然后創(chuàng)建一個(gè)同樣大小的數(shù)組,每放置一個(gè)cell县遣,就將cell的最大偏移量yOffset存儲(chǔ)或者更新到y(tǒng)OffsetArray數(shù)組中糜颠,然后將得到的每個(gè)cell的attributes存儲(chǔ)到數(shù)組中itemAttributes中

//返回每個(gè)cell的屬性
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
    return self.itemAttributes;
}

//更新collectionView的大小
- (CGSize)collectionViewContentSize {
    return CGSizeMake(self.collectionView.bounds.size.width, self.yOffset);
}

最終得到的效果圖為(3列的情況下)


3列等寬度的情況下的布局

修改count為4,即是4列等寬度的情況

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    NSInteger count = 4;//每行排列的cell的個(gè)數(shù)
    float width = self.view.bounds.size.width - 10 * 2  - 10 * (count - 1);
    float height = [[self.heightArray objectAtIndex:indexPath.row] floatValue];
    return CGSizeMake(width / count, height);
}

相應(yīng)的效果圖為:


4列等寬度的效果圖

這種方法的適用性更廣萧求,比2列情況下的奇偶解決思路要好一些其兴。

橫向滑動(dòng)時(shí)第一個(gè)cell放大的實(shí)現(xiàn)

要實(shí)現(xiàn)的最終效果如下:


滑動(dòng)過(guò)程中第一個(gè)cell放大

先使用UICollectionViewFlowLayout來(lái)實(shí)現(xiàn)一個(gè)簡(jiǎn)單的滑動(dòng),滑動(dòng)方向設(shè)置為水平滑動(dòng)夸政。

設(shè)置cell的大小

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    return CGSizeMake(100, 100);
}

最終得到的效果圖為:


image.png

滑動(dòng)過(guò)程中cell大小不會(huì)變化元旬,下面開(kāi)始使用自定義的flowLayout

新建一個(gè)文件繼承自UICollectionViewFlowLayout,命名為FirstCellZoomInLayoutTwo

在.h文件中,定義相應(yīng)的協(xié)議匀归,協(xié)議中定義一個(gè)協(xié)議方法坑资,用于實(shí)現(xiàn)對(duì)第一個(gè)cell的frame放大

@protocol FirstCellZoomInLayoutTwoDelegate <UICollectionViewDelegateFlowLayout>

- (CGSize)sizeForFirstCell;

@end

.h文件中定義相應(yīng)的協(xié)議
@property (nonatomic, weak) id<FirstCellZoomInLayoutTwoDelegate> delegate;
在.m文件中

- (void)prepareLayout {
    [super prepareLayout];
    //必須要設(shè)置,因?yàn)槟J(rèn)的滑動(dòng)方向是豎直滑動(dòng)
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;//設(shè)置滑動(dòng)方向?yàn)樗交瑒?dòng)
}

在ThirdViewController.m中穆端,遵守協(xié)議袱贮,實(shí)現(xiàn)相應(yīng)的協(xié)議方法

- (CGSize)sizeForFirstCell {
    return CGSizeMake(120, 150);
}

接著需要修改第一個(gè)cell的frame

在FirstCellZoomInLayoutTwo.m文件中

- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
    //獲取原有的所有cell的布局信息
    NSArray *originalArr = [super layoutAttributesForElementsInRect:rect];
    //獲取collectionView的相關(guān)屬性
    UIEdgeInsets sectionInsets = [self.delegate collectionView:self.collectionView layout:self insetForSectionAtIndex:0];
    CGSize itemSize = [self.delegate collectionView:self.collectionView layout:self sizeForItemAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    //因?yàn)榧由狭藄elf.collectionView.contentoffset.x,所以first代表的是顯示在界面上的最左邊的cell
    CGRect first = CGRectMake(sectionInsets.left + self.collectionView.contentOffset.x, sectionInsets.top + self.collectionView.contentOffset.y, itemSize.width, itemSize.height);
    //需要放大的cell的大小
    CGSize firstCellSize = [self.delegate sizeForFirstCell];
    CGFloat totalOffset = 0;
    for (UICollectionViewLayoutAttributes *attributes in originalArr) {
        CGRect originFrame = attributes.frame;
        //判斷兩個(gè)矩形是否相交,判斷cell與需要放大的cell的frame是否有相交体啰,如果相交攒巍,需要修改cell的frame
        if (CGRectIntersectsRect(first, originFrame)) {
            //如果相交,獲取兩個(gè)矩形相交的區(qū)域
            CGRect insertRect = CGRectIntersection(first, originFrame);
            attributes.size = CGSizeMake(itemSize.width + (insertRect.size.width / itemSize.width) * (firstCellSize.width - itemSize.width), itemSize.height + (insertRect.size.width) / (itemSize.width) * (firstCellSize.height - itemSize.height));
           //計(jì)算因?yàn)榉糯蟮谝粋€(gè)導(dǎo)致的cell的中心點(diǎn)的偏移量
            CGFloat currentOffsetX = attributes.size.width - itemSize.width;
            attributes.center = CGPointMake(attributes.center.x + totalOffset + currentOffsetX / 2, attributes.center.y);
            totalOffset = totalOffset + currentOffsetX;
        } else {
            //當(dāng)cell的最小x值大于第一個(gè)cell的最大x值時(shí)荒勇,cell的偏移量需要加上totolOffset
            if (CGRectGetMinX(originFrame) >= CGRectGetMaxX(first)) {
                attributes.center = CGPointMake(attributes.center.x + totalOffset, attributes.center.y);
            }
       }
    }
    return originalArr;
}

上面處理的思路是:

判斷各個(gè)cell與第一個(gè)cell是否相交(只有第一個(gè)cell才能與其相交)柒莉,相交的話(huà)將該cell的寬高設(shè)為放大后的寬高,中心點(diǎn)的偏移量為currentOffsetX的一半沽翔,如果不相交的話(huà)兢孝,中心點(diǎn)的偏移量為currentOffset,不用除以二

這樣之后的運(yùn)行效果為:


image.png

可以看到此時(shí)的frame大小滑動(dòng)的過(guò)程中會(huì)出現(xiàn)各種異常搀擂,這是因?yàn)閏ollectionView的bounds發(fā)生變化,我們沒(méi)有及時(shí)更新導(dǎo)致的卷玉,需要加上以下方法

- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {
    return YES;
}

這是運(yùn)行的效果圖為:


已經(jīng)基本滿(mǎn)足要求哨颂,但是滑動(dòng)停止的位置不精確

從上面的圖上可以看出,已經(jīng)基本滿(mǎn)足要求相种,但是滑動(dòng)后停留的位置不準(zhǔn)威恼,接下來(lái)需要對(duì)這個(gè)進(jìn)行處理
在- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity方法中進(jìn)行處理

- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity {
   //獲取collectionView的相關(guān)屬性
    UIEdgeInsets sectionInsets = [self.delegate collectionView:self.collectionView layout:self insetForSectionAtIndex:0];
    CGSize itemSize = [self.delegate collectionView:self.collectionView layout:self sizeForItemAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    CGFloat finalPointX = 0;
    //根據(jù)最終的偏移量計(jì)算出最終停留的cell的index值,向上取整
    NSInteger index = ceil(proposedContentOffset.x / (itemSize.width + self.minimumInteritemSpacing));
    //根據(jù)index值計(jì)算出相應(yīng)的偏移量
    finalPointX = (itemSize.width + self.minimumInteritemSpacing) * index;
    //得到最終停留點(diǎn)
    CGPoint finalPoint = CGPointMake(finalPointX, proposedContentOffset.y);
    return finalPoint;
}

最終的效果圖為:

最終效果圖

總結(jié)

通過(guò)自定義UICollectionViewFlowLayout可以實(shí)現(xiàn)一些復(fù)雜的布局效果寝并,
demo地址

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末箫措,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子衬潦,更是在濱河造成了極大的恐慌斤蔓,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件镀岛,死亡現(xiàn)場(chǎng)離奇詭異弦牡,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)漂羊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)驾锰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人走越,你說(shuō)我怎么就攤上這事椭豫。” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵赏酥,是天一觀的道長(zhǎng)喳整。 經(jīng)常有香客問(wèn)我,道長(zhǎng)今缚,這世上最難降的妖魔是什么算柳? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮姓言,結(jié)果婚禮上瞬项,老公的妹妹穿的比我還像新娘。我一直安慰自己何荚,他們只是感情好囱淋,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著餐塘,像睡著了一般妥衣。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上戒傻,一...
    開(kāi)封第一講書(shū)人閱讀 49,007評(píng)論 1 284
  • 那天税手,我揣著相機(jī)與錄音,去河邊找鬼需纳。 笑死芦倒,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的不翩。 我是一名探鬼主播兵扬,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼口蝠!你這毒婦竟也來(lái)了器钟?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤妙蔗,失蹤者是張志新(化名)和其女友劉穎傲霸,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體眉反,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡狞谱,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了禁漓。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片跟衅。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖播歼,靈堂內(nèi)的尸體忽然破棺而出伶跷,到底是詐尸還是另有隱情掰读,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布叭莫,位于F島的核電站蹈集,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏雇初。R本人自食惡果不足惜拢肆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望靖诗。 院中可真熱鬧郭怪,春花似錦、人聲如沸刊橘。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)促绵。三九已至攒庵,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間败晴,已是汗流浹背浓冒。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留尖坤,地道東北人稳懒。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像糖驴,于是被迫代替她去往敵國(guó)和親僚祷。 傳聞我的和親對(duì)象是個(gè)殘疾皇子佛致,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345