iOS - 简单的瀑布流

先看看效果


效果图

1.创建UICollectionView

    self.collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:self.layout];
    [self.view addSubview:self.collectionView];
    self.collectionView.delegate = self;
    self.collectionView.dataSource = self;
    [self.collectionView registerClass:[PHCollectionViewCell class] forCellWithReuseIdentifier:@"PHCollectionViewCellID"];
    self.collectionView.backgroundColor = [UIColor whiteColor];

2.自定义 Layout (重点)

2.1 创建一个继承自UICollectionViewFlowLayout 的对象
@interface PHCollectionViewFlowLayout : UICollectionViewFlowLayout
/** 列间距 */
@property(nonatomic,assign)CGFloat columnMargin;
/** 行间距 */
@property(nonatomic,assign)CGFloat rowMargin;
/** 列数 */
@property(nonatomic,assign)int columnsCount;
@end
2.2 重写 UICollectionViewFlowLayout 中的一些方法

2.2.1 声明两个可变数组 一个用来存放每一列的下一个的Y值, 一个用来存放cell的Attributes

@property (nonatomic,strong) NSMutableArray *yArray;
@property (nonatomic,strong) NSMutableArray *attrsArray;

- (NSMutableArray *)yArray{
    if (!_yArray) {
       // 不能为空 需要有每一列的初始值
        _yArray = [NSMutableArray array];
        for (int i = 0; i < self.columnsCount; i++) {
            [_yArray addObject:[NSNumber numberWithFloat:0]];
        }
    }
    return _yArray;
}

- (NSMutableArray *)attrsArray{
    if (!_attrsArray) {
        _attrsArray = [NSMutableArray array];
    }
    return _attrsArray;

}

2.2.2 重写: prepareLayout (每一次collocationView 刷新的数据的时候会调)

- (void)prepareLayout{
    [super prepareLayout];
    
    // 因为是刷新所有cell  所以需要清空之前的 这里可以根据需求来定 不删除全部的 保留之前已经计算的好的Attributes
    self.yArray = nil;
    [self.attrsArray removeAllObjects];

    NSInteger count = [self.collectionView numberOfItemsInSection:0];
   

    for (NSInteger i = 0; i < count; i++) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:0];
        [self.attrsArray addObject:[self layoutAttributesForItemAtIndexPath:indexPath]];
    }


}
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewLayoutAttributes *attributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
    CGFloat w = (self.collectionView.bounds.size.width - self.sectionInset.left - self.sectionInset.right - self.columnMargin * (self.columnsCount - 1)) / self.columnsCount;
    CGFloat h = 100 + arc4random_uniform(100); // 重点 这里的高度设开发情况定 这里是只是举个例子 随机高度
    
    // 找到Y值最小的那一列
    CGFloat minY = [self.yArray[0] floatValue];
    int minYIndex = 0;
    for (int j = 1; j < self.yArray.count; j++) {
        CGFloat y = [self.yArray[j] floatValue];
        if (y < minY) {
            minY = y;
            minYIndex = j;
        }
    }
    
    CGFloat y = minY;
     // 将该列下一个的Y值计算出来 并存放起来
    self.yArray[minYIndex] = [NSNumber numberWithFloat:y + h + self.rowMargin];
    
    CGFloat x = self.sectionInset.left + (self.columnMargin + w) * yIndex;
    // 上述只是解释原理, frame值的生成由各自需求而定
    attributes.frame = CGRectMake(x, y, w, h);

    return attributes;
}
// 系统的方法 返回每一个cell的 Attributes 在 prepareLayout 之后调用
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect{
    return self.attrsArray;
}

2.2.2 重写 collectionViewContentSize 方法 返回UICollocationView的ContentSize

- (CGSize)collectionViewContentSize{
    // 根据需求来返回 这里实现的是纵向滚动的效果 所以将最大的y值 返回即可
    return CGSizeMake(self.collectionView.frame.size.width, [self contentSizeHeight]);
}
- (CGFloat)contentSizeHeight{
    CGFloat maxh = [self.yArray[0] floatValue];
    for (int i = 1; i < self.yArray.count; i++) {
        CGFloat h = [self.yArray[i] floatValue];
        if (h > maxh) {
            maxh = h;
        }
    }
    return maxh;
}
实现以上几步 就可以做出简单的瀑布流效果
有个小问题
测试代码
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    PHCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"PHCollectionViewCellID" forIndexPath:indexPath];
    
    if (indexPath.row == 10) {
        NSLog(@" %@",NSStringFromCGRect(cell.contentView.frame));// 变
        NSLog(@" %@",NSStringFromCGRect(cell.frame));  // 不变
        NSLog(@"------------");
    }
    
    cell.label.text = [NSString stringWithFormat:@"%ld - %ld",indexPath.section,indexPath.item];
    cell.backgroundColor = [self randomColor];
    
    return cell;
}
打印结果

测试中发现 cell的frame一直没有变 但是 cell.contentView 变了

发现在上述代码中 添加 [cell layoutSubviews]; 重置cell的子控件布局 就OK 了

打印结果2

不管有没有重新走 prepareLayout 他都会变
其中的 Attributes 计算也没有错 已经打印 并且cell的frame 打印也是正确的
就只有cell的contentView的frame变了
不太明白原因,希望有哪位哥们帮忙解答下,感谢

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 162,158评论 4 370
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 68,600评论 1 307
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 111,785评论 0 254
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,655评论 0 220
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 53,075评论 3 295
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 41,002评论 1 225
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 32,146评论 2 318
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,918评论 0 211
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,671评论 1 250
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,838评论 2 254
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,318评论 1 265
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,636评论 3 263
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,343评论 3 244
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,187评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,982评论 0 201
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 36,126评论 2 285
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,934评论 2 279

推荐阅读更多精彩内容