iOS--瀑布流的实现

最近一直在做项目,没什么时间发博客.现在有空了,整理一下这段时间项目里的一些实用技术.如果有问题欢迎随时找我交流.

iOS瀑布流,实现的是对于不同尺寸控件的合理布局

举个例子:(ONE一个的往期列表)
ONE一个

通过collectionView利用自定义的layout进行布局,cell进行自适应.我个人觉得这个效果特别适合一个这个APP.

下面来看一下具体的代码实现:

首先,看一下数据内容:(这里我找了一个本地的json文件当做数据源)
     {
         "thumbURL":"http://amuse.nen.com.cn/imagelist/11/21/9as70n3ir61b.jpg",
         "width": 482,
         "height": 480
     }

代码内容:

MyLayOut.h
    #import <UIKit/UIKit.h>
    
    @protocol MyLayOutDelegate <NSObject>
    
    /**
     *  获取item的高度
     *
     *  @param indexPath 下标
     *
     *  @return item高度
     */
    - (CGFloat)heightForItemAtIndexPath:(NSIndexPath *)indexPath;
    
    @end
    
    @interface MyLayOut : UICollectionViewLayout
    
    /**
     *  单元格尺寸
     */
    @property (nonatomic, assign) CGSize itemSize;
    
    /**
     *  列数
     */
    @property (nonatomic, assign) NSInteger numberOfColumns;
    
    /**
     *  内边距
     */
    @property (nonatomic, assign) UIEdgeInsets sectionInSet;
    
    /**
     *  item间隔
     */
    @property (nonatomic, assign) CGFloat ItemSpacing;
    
    /**
     *  代理人属性
     */
    @property (nonatomic, assign) id<MyLayOutDelegate>delegate;

    @end
MyLayOut.m
    #import "MyLayOut.h"
    
    @interface MyLayOut ()
    
    /**
     *  列高
     */
    @property (nonatomic, strong) NSMutableArray *columnsHeights;
    
    /**
     *  item的数量
     */
    @property (nonatomic, assign) NSInteger numberOfItems;
    
    /**
     *  存放每个item的位置信息的数组
     */
    @property (nonatomic, strong) NSMutableArray *itemAttributes;
    
    /**
     *  临时存储当前item的x值
     */
    @property (nonatomic, assign) CGFloat item_X;
    
    /**
     *  临时存储当前item的Y值
     */
    @property (nonatomic, assign) CGFloat item_Y;
    
    /**
     *  最矮列下标
     */
    
    @property (nonatomic, assign) NSInteger shortestIndex;
    
    @end
    
    @implementation MyLayOut
    
    #pragma mark -------------------- 懒加载
    - (NSMutableArray *)columnsHeights
    {
        if (!_columnsHeights)
        {
            self.columnsHeights = [NSMutableArray array];
        }
        return _columnsHeights;
    }
    
    - (NSMutableArray *)itemAttributes
    {
        if (!_itemAttributes)
        {
            self.itemAttributes = [NSMutableArray array];
        }
        return _itemAttributes;
    }
    
    #pragma mark -- 获取最矮列的下标
    - (NSInteger)getShortestColumnIndex
    {
        //最矮列下标
        NSInteger shortestIndex = 0;
        
        //column高度
        CGFloat shortestHeight = MAXFLOAT;
        
        //遍历高度数组获得最矮列下标
        for (NSInteger i = 0; i < self.numberOfColumns; i ++)
        {
            CGFloat currentHeight = [[self.columnsHeights objectAtIndex:i] floatValue];
            if (currentHeight < shortestHeight)
            {
                shortestHeight = currentHeight;
                shortestIndex = i;
            }
        }
        return shortestIndex;
    }
    
    #pragma mark -- 获取最高列的下标
    - (NSInteger)getHighestColumnIndex
    {
        //最高列下标
        NSInteger highestIndex = 0;
        
        //column高度
        CGFloat highestHeight = 0;
        
        //遍历高度数组获得最高列下标
        for (NSInteger i = 0; i < self.numberOfColumns; i ++)
        {
            CGFloat currentHeight = [[self.columnsHeights objectAtIndex:i] floatValue];
            if (currentHeight > highestHeight)
            {
                highestHeight = currentHeight;
                highestIndex = i;
            }
        }
        return highestIndex;
    }
    
    #pragma mark -- 添加顶部内边距的值
    - (void)addTopValueForColumns
    {
        for (NSInteger i = 0; i < self.numberOfColumns; i ++)
        {
            self.columnsHeights[i] = @(self.sectionInSet.top);
        }
    }
    
    #pragma mark -- 计算每个item的X和Y
    - (void)getOriginInShortestColumn
    {
        //获取最矮列下标
        self.shortestIndex = [self getShortestColumnIndex];
        
        //获取最矮列的高度
        CGFloat shortestHeight = [[self.columnsHeights objectAtIndex:self.shortestIndex] floatValue];
        
        //设置item的X
        self.item_X = self.sectionInSet.left + (self.itemSize.width + self.ItemSpacing) * self.shortestIndex;
        
        //设置item的Y
        self.item_Y = shortestHeight + self.ItemSpacing;
    }
    
    #pragma mark -- 计算width和height --> 生成frame
    - (void)setFrame:(NSIndexPath *)indexPath
    {
        UICollectionViewLayoutAttributes *layOutAttribute = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
        
        //存放item的高度
        CGFloat itemHeight = 0;
        
        if (self.delegate && [self.delegate respondsToSelector:@selector(heightForItemAtIndexPath:)])
        {
            itemHeight = [self.delegate heightForItemAtIndexPath:indexPath];
        }
        
        layOutAttribute.frame = CGRectMake(_item_X, _item_Y, self.itemSize.width, itemHeight);
        
        //将位置信息加入数组
        [self.itemAttributes addObject:layOutAttribute];
        
        //更新当前列的高度
        self.columnsHeights[_shortestIndex] = @(self.item_Y + itemHeight);
    }
    
    #pragma mark -- 重写父类布局方法
    - (void)prepareLayout
    {
        [super prepareLayout];
        
        //为高度数组添加上边距
        [self addTopValueForColumns];
        
        //获取item个数
        self.numberOfItems = [self.collectionView numberOfItemsInSection:0];
        
        //循环布局
        for (NSInteger i = 0; i < self.numberOfItems; i ++)
        {
            //计算item的X和Y
            [self getOriginInShortestColumn];
            
            //生成indexPath
            NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:0];
            
            //生成frame
            [self setFrame:indexPath];
        }
    }
    
    #pragma mark -- 获取contentView尺寸
    - (CGSize)collectionViewContentSize
    {
        //获取最高列下标
        NSInteger highestIndex = [self getHighestColumnIndex];
        
        //获取最高列高度
        CGFloat highestHeight = [[self.columnsHeights objectAtIndex:highestIndex] floatValue];
        
        //构造contentView的size
        CGSize size = self.collectionView.frame.size;
        
        //修改高度
        size.height = highestHeight + self.sectionInSet.bottom;
        
        //返回size
        return size;
    }
    
    #pragma mark -- 返回位置信息数组
    - (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
    {
        return self.itemAttributes;
    }

@end
ViewController.m
    #import "ViewController.h"
    #import "Model.h"
    #import "MyLayOut.h"
    #import "ImageCell.h"
    #import "UIImageView+WebCache.h"
    
    @interface ViewController ()<MyLayOutDelegate, UICollectionViewDelegate, UICollectionViewDataSource>
    
    /**
     *  数据源数组
     */
    @property (nonatomic, strong) NSMutableArray *dataSource;
    
    /**
     *  集合视图
     */
    @property (nonatomic, strong) UICollectionView *collectionView;
    
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        
        [self getData];
        [self createCollectionView];
    }
    
    #pragma mark -------------------- 请求数据
    - (void)getData
    {
        self.dataSource = [NSMutableArray array];
        
        NSData *data = [NSData dataWithContentsOfFile:@"/Users/dllo/Desktop/简书/MyFlowLayOut/MyFlowLayOut/Data.json"];
        NSArray *array = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
        
        for (NSDictionary *dic in array)
        {
            Model *model = [[Model alloc] init];
            [model setValuesForKeysWithDictionary:dic];
            [self.dataSource addObject:model];
        }
    }
    
    #pragma mark -------------------- 创建collectionView
    - (void)createCollectionView
    {
        MyLayOut *layOut = [[MyLayOut alloc] init];
        layOut.delegate = self;
        layOut.itemSize = CGSizeMake((self.view.frame.size.width - 40) / 3.0, (self.view.frame.size.width - 40) / 3.0);
        layOut.ItemSpacing = 10;
        layOut.sectionInSet = UIEdgeInsetsMake(10, 10, 10, 10);
        layOut.numberOfColumns = 3;
        
        self.collectionView = [[UICollectionView alloc] initWithFrame:self.view.frame collectionViewLayout:layOut];
        self.collectionView.delegate = self;
        self.collectionView.dataSource = self;
        self.collectionView.backgroundColor = [UIColor colorWithRed:0.52 green:0.74 blue:0.96 alpha:1.00];
        [self.view addSubview:_collectionView];
        
        //注册cell:
        [self.collectionView registerClass:[ImageCell class] forCellWithReuseIdentifier:@"imageCell"];
    }
    
    #pragma mark -------------------- 实现自定义协议方法
    - (CGFloat)heightForItemAtIndexPath:(NSIndexPath *)indexPath
    {
        CGFloat width = ([UIScreen mainScreen].bounds.size.width - 40) / 3.0;
        
        Model *model = [self.dataSource objectAtIndex:indexPath.row];
        CGFloat height = (model.height / model.width) * width;
        return height;
    }
    
    #pragma mark -------------------- 实现collectionView协议方法
    - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
    {
        return self.dataSource.count;
    }
    
    - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
    {
        ImageCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"imageCell" forIndexPath:indexPath];
        cell.backgroundColor = [UIColor lightGrayColor];
        cell.layer.cornerRadius = 5;
        cell.photoImageView.layer.cornerRadius = 5;
        cell.photoImageView.clipsToBounds = YES;
        cell.photoImageView.contentMode = UIViewContentModeScaleAspectFit;
        [cell.photoImageView sd_setImageWithURL:[NSURL URLWithString:[[self.dataSource objectAtIndex:indexPath.row] thumbURL]]];
        return cell;
    }
    
    - (UIStatusBarStyle)preferredStatusBarStyle
    {
        return UIStatusBarStyleLightContent;
    }
    
    - (void)didReceiveMemoryWarning {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
}

@end

实现效果如下:

实现效果

在写的过程中也遇到了很多问题,因为对于layout的实现我也不是很熟悉,还需要进一步调研,希望大家都能共同进步!

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

推荐阅读更多精彩内容

  • 为何我会对瀑布流为这么上进,非要将瀑布流来一次大清洗,非逼得自己将它彻底弄清楚。原因其实也很简单:之前刚出来找工作...
    smooth_lgh阅读 4,721评论 1 5
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 三种方法实现 一、scrollView做垫子,上面添加多个tableView(不可取); 效率低下,cell不能循...
    SadMine阅读 751评论 0 0
  • 天空很蓝,没有一片云 地里的油菜,开花了! 蜜蜂争着采蜜,吐出了各种口味. ...
    丹珍旺唐阅读 213评论 0 0
  • 波士顿矩阵其实就是在综合分析自己的优势劣势后,进行有针对性的投放精力,有的放矢,让自己在竞争发展中更具优势。
    423429d90f38阅读 182评论 0 0