华山论剑之浅谈iOS瀑布流

心灵鸡汤可不是谁想喝就喝的! --------------栋哥

看完千篇一律的UI布局之后,当我们看到瀑布流的布局是不是觉得有种耳目一新的感觉呢?今天我们就说一下如果实现瀑布流,对于瀑布流,现在iOS中总共存在着三种实现方法.

1.实现瀑布流的布局,我们需要计算每一张图片的尺寸大小,然后根据列数布局到我们的UIScrollView上去

2.UITableView实现瀑布流效果,就是每一列都是一个视图.

3.UICollectionView实现瀑布流就是对UICollectionView的FlowLayout重写.



UICollectionView 实现瀑布流

瀑布流的实现,现在大多数人都是使用集合视图 UICollectionView 这个类做的,我们需要把集合视图的布局进行重新定义.

对于UICollectionViewFlowLayout 这里有个封装好的类,有需要的可以直接拿去使用了

WaterfallLayout.h文件中.

//
//  WaterfallLayout.h
//  Abe的瀑布流的封装
//
//  Created by dongge on 16/3/2.
//  Copyright © 2016年 Abe. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol WaterfallLayoutDelegate <NSObject>

// 获取图片高度
- (CGFloat)heightForItemIndexPath:(NSIndexPath *)indexPath;

@end


@interface WaterfallLayout : UICollectionViewFlowLayout

// item大小
@property (nonatomic,assign)CGSize itemSize;

// 内边距
@property (nonatomic,assign)UIEdgeInsets sectionInsets;

// 间距
@property (nonatomic,assign)CGFloat insertItemSpacing;

// 列数
@property (nonatomic,assign)NSUInteger numberOfColumn;

// 代理(提供图片高度)
@property (nonatomic,weak)id<WaterfallLayoutDelegate>delegate;


@end

WaterfallLayout.m中

//
//  WaterfallLayout.m
//  Abe的瀑布流的封装
//
//  Created by dongge on 16/3/2.
//  Copyright © 2016年 Abe. All rights reserved.
//

#import "WaterfallLayout.h"


@interface WaterfallLayout()


// 所有Item的数量
@property (nonatomic,assign)NSUInteger numberOfItems;

// 这是一个数组,保存每一列的高度
@property (nonatomic,strong)NSMutableArray *columnHeights;
// 这是一个数组,数组中保存的是一种类型,这种类型决定item的位置和大小。
@property (nonatomic,strong)NSMutableArray *itemAttributes;
// 获取最长列索引
- (NSInteger)indexForLongestColumn;
// 获取最短列索引
- (NSInteger)indexForShortestColumn;


@end

@implementation WaterfallLayout


- (NSMutableArray *)columnHeights{
    if (nil == _columnHeights) {
        self.columnHeights = [NSMutableArray array];
    }
    return _columnHeights;
}

-(NSMutableArray *)itemAttributes{
    if (nil == _itemAttributes) {
        self.itemAttributes = [NSMutableArray array];
    }
    return _itemAttributes;
}


// 获取最长列索引
- (NSInteger)indexForLongestColumn{
    // 记录索引
    NSInteger longestIndex = 0;
    // 记录当前最长列高度
    CGFloat longestHeight = 0;
    for (int i = 0; i < self.numberOfColumn; i++) {
        // 取出列高度
        CGFloat currentHeight = [self.columnHeights[i] floatValue];
        // 判断
        if (currentHeight > longestHeight) {
            longestHeight = currentHeight;
            longestIndex = i;
        }
    }
    return longestIndex;
    
}
// 获取最短列索引
- (NSInteger)indexForShortestColumn{
    
    // 记录索引
    NSInteger shortestIndex = 0;
    
    // 记录最短高度
    CGFloat shortestHeight = MAXFLOAT;
    for (int i = 0; i < self.numberOfColumn; i++) {
        
        CGFloat currentHeight = [self.columnHeights[i] floatValue];
        if (currentHeight < shortestHeight) {
            shortestHeight = currentHeight;
            shortestIndex = i;
        }
    }
    return shortestIndex;
}

// 这里计算每一个item的x,y,w,h。并放入数组
-(void)prepareLayout{
    [super prepareLayout];
    
    // 循环添加top高度
    for (int i = 0; i < self.numberOfColumn; i++) {
        self.columnHeights[i] = @(self.sectionInsets.top);
    }
    
    // 获取item数量
    self.numberOfItems = [self.collectionView numberOfItemsInSection:0];
    
    // 循环计算每一个item的x,y,width,height
    for (int i = 0; i < self.numberOfItems; i++) {
        
        // x,y
        
        // 获取最短列
        NSInteger shortIndex = [self indexForShortestColumn];
        
        // 获取最短列高度
        CGFloat shortestH = [self.columnHeights[shortIndex] floatValue];
        
        // x
        CGFloat detalX = self.sectionInsets.left + (self.itemSize.width + self.insertItemSpacing) * shortIndex;
        
        // y
        CGFloat detalY = shortestH + self.insertItemSpacing;
        
        // h
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:0];
        
        CGFloat itemHeight = 0;
        if (self.delegate != nil && [self.delegate respondsToSelector:@selector(heightForItemIndexPath:)]){
            itemHeight = [self.delegate heightForItemIndexPath:indexPath];
        }
        
        // 保存item frame属性的对象
        UICollectionViewLayoutAttributes *la = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
        la.frame = CGRectMake(detalX, detalY, self.itemSize.width, itemHeight);
        
        // 放入数组
        [self.itemAttributes addObject:la];
        
        // 更新高度
        self.columnHeights[shortIndex] = @(detalY + itemHeight);
    }
}


// 计算contentSize
- (CGSize)collectionViewContentSize{
    // 获取最高列
    NSInteger longestIndex = [self indexForLongestColumn];
    CGFloat longestH = [self.columnHeights[longestIndex] floatValue];
    
    // 计算contentSize
    CGSize contentSize = self.collectionView.frame.size;
    contentSize.height = longestH + self.sectionInsets.bottom;
    
    return contentSize;
}

// 返回所有item的位置和大小(数组)
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect{
    return self.itemAttributes;
}



@end

接下来我们就在我们需要的地方调用我们已经封装好的类和实现协议方法就可以了.这里我在ViewController.m中做了一下测试

//
//  ViewController.m
//  Abe的瀑布流的封装
//
//  Created by dongge on 16/3/2.
//  Copyright © 2016年 Abe. All rights reserved.
//

#import "ViewController.h"

#import "WaterFlowModel.h"

#import "WaterFlowCell.h"

#import "WaterfallLayout.h"

#import "UIImageView+WebCache.h"

@interface ViewController ()<UICollectionViewDataSource,UICollectionViewDelegate,WaterfallLayoutDelegate>

@property(nonatomic,strong)NSMutableArray *dataArray;//创建可变数组,存储json文件数据

@end

@implementation ViewController


-(NSMutableArray *)dataArray{

    if (nil == _dataArray) {
        _dataArray = [NSMutableArray array];
    }

    return _dataArray;
    
}

//解析json文件

-(void)parserJsonData {

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Data" ofType:@"json"];

    NSData *jsonData = [NSData dataWithContentsOfFile:filePath];
    
    NSMutableArray *arr = [NSMutableArray array ];
    
    arr = [NSJSONSerialization JSONObjectWithData:jsonData options:(NSJSONReadingAllowFragments) error:nil];
    
    for (NSDictionary *dic in arr) {
        
        WaterFlowModel *model = [[WaterFlowModel alloc]init];
        
        [model setValuesForKeysWithDictionary:dic];
        
        [self.dataArray addObject: model];
        
    }

}


//在viewDidLoad设置集合视图的flowLayout,我们要做的就是新创建一个继承于UICollectionViewLayout的类,在这个子类当中,做出瀑布流的布局.
- (void)viewDidLoad {
    [super viewDidLoad];
    
    //    UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
    
    self.view.backgroundColor = [UIColor whiteColor];
    
    WaterfallLayout *flowLayout = [[WaterfallLayout alloc] init];
    // 高度
    flowLayout.delegate = self;
    
    
    CGFloat w = ([UIScreen mainScreen].bounds.size.width - 40) / 3;
    
    flowLayout.itemSize = CGSizeMake(w, w);
    // 间隙
    flowLayout.insertItemSpacing = 10;
    // 内边距
    flowLayout.sectionInsets = UIEdgeInsetsMake(10, 10, 10, 10);
    // 列数
    flowLayout.numberOfColumn = 3;
    
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:flowLayout];
    
    collectionView.delegate = self;
    collectionView.dataSource = self;
    
    [self.view addSubview:collectionView];
    
    [collectionView registerClass:[WaterFlowCell class] forCellWithReuseIdentifier:@"cell"];
    
    
    collectionView.backgroundColor = [UIColor whiteColor];
    [self parserJsonData];
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return self.dataArray.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    WaterFlowCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
    WaterFlowModel *m = self.dataArray[indexPath.item];
    [cell.imgView sd_setImageWithURL:[NSURL URLWithString:m.thumbURL]];
    return cell;
}


// 计算高度
- (CGFloat)heightForItemIndexPath:(NSIndexPath *)indexPath{
    WaterFlowModel *m = self.dataArray[indexPath.item];
    CGFloat w = ([UIScreen mainScreen].bounds.size.width - 40) / 3;
    CGFloat h = (w * m.height) / m.width;
    return h;
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

上面的WaterFlowCell 和 WaterFlowModel 就是测试用的,

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,010评论 4 62
  • 今天在淘票票上偶然看到了这部评分高达9.7分的电影――《摔跤吧,爸爸》,我瞬间有点惊讶,于是便立刻订票并怀着好奇的...
    阑珊非隅阅读 783评论 0 5
  • 我始终认为一个人可以很天真简单的活下去,必是身边无数人用更大的代价守护而来的。 —— 《小王子》 ​​​​
    杜小遥阅读 273评论 0 0
  • 有人说:人啊,过了二十几岁,上帝就会开始给你做减法。拿掉你的一些朋友,拿掉你的一些梦想。有些人跟你分道扬镳...
    19画生阅读 8,286评论 0 2
  • 如果你忘了我 我只能说没关系 如果你真的忘了我 我也只能说没关系 身命中的人来了去,去了又来 而我始终忘不了 有那...
    纳兰秋琪阅读 202评论 0 0