使用UICollectionView实现瀑布流

一、搭建项目

使用纯代码实现瀑布流,删除Main.storyboard、viewController.h 、viewController.m文件。创建新的文件CollectionViewController.m/.h文件,继承自UICollectionViewController

二、设置collectionViewController

使用纯代码创建collectionViewController需要手动设置布局方式

1.声明变量

@property(nonatomic,strong) UICollectionViewFlowLayout * layout;

2.实现布局,重写初始化方法

-(instancetype) init{
self.layout = [[UICollectionViewFlowLayout alloc] init];
if (self = [super initWithCollectionViewLayout:self.layout]) {
}
return self;
}

3.设置数据

导入plist文件,创建数据模型,使用kvc进行赋值

@interface Shop : NSObject
@property(nonatomic,copy) NSString *img;
@property(nonatomic,copy)NSString *price;     
@property(nonatomic,assign) float h;
@property(nonatomic,assign) float w;
+(instancetype) shopWithDict:(NSDictionary *) dict;
/// 通过index获取数据内容,由于数据有限,使用循环显示的方式
+(NSArray *) shopsWithIndex:(NSInteger)index;
@end

.m文件

//  KVC赋值
   (instancetype) shopWithDict:(NSDictionary *) dict{
Shop * shop = [[self alloc] init];
[shop setValuesForKeysWithDictionary:dict];
return  shop;
}
//懒加载 通过index 索引 懒加载数据
 -(NSArray *) shopsWithIndex:(NSInteger)index
{
// 获取plist 文件
//如果传入的index 不是在1、2、3 会导致程序崩溃,所以将index % 3 + 1 保证 能够找到plist 文件
NSString *fileName = NSString stringWithFormat:@"%zd.plist", index % 3 + 1];
//在程序中存放的资源,都是bundle中
//获取bundle目录
NSString *pathFile = [[NSBundle mainBundle] pathForResource:fileName ofType:nil];
//将pathFile中的内容存放到数组中
NSArray *array = [NSArray arrayWithContentsOfFile:pathFile];
 //字典转模型
NSMutableArray *arrayM =[NSMutableArray arrayWithCapacity:array.count];
for (NSDictionary * dict  in array) {
    [arrayM addObject:[self shopWithDict:dict]];
}
return  [arrayM copy];
}

controller中添加两个属性,通过索引获取数据

@property(nonatomic,strong)NSMutableArray *shops;
@property(nonatomic,assign)NSInteger index;

viewDidload方法中设置数据

[self.shops addObjectsFromArray:[Shop shopsWithIndex:self.index]];
self.index++;

导入SDWebImage框架,自定义cell,实现cell 的布局
.h

@class Shop;
@interface CollectionViewCell : UICollectionViewCell
@property(nonatomic,weak) UIImageView *img;
@property(nonatomic,weak) UILabel *price;
@property(nonatomic,strong) Shop *shop;
@end

.m

// collectionView的默认初始化方法
-(instancetype)initWithFrame:(CGRect)frame{
if (self = [super initWithFrame:frame]) {
    //布局,设计UI
    [self setupUI];
}
return self;
}
-(void)setupUI{
UIImageView *imgView = [[UIImageView alloc] init];
self.img = imgView;
[self addSubview:self.img];
UIView *vi = [[UIView alloc] init];
vi.alpha = 0.4;
vi.backgroundColor = [UIColor whiteColor];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 44)];
self.price = label;
[self addSubview:vi];
[vi addSubview:self.price];
//自动布局
imgView.translatesAutoresizingMaskIntoConstraints = NO;
imgView.translatesAutoresizingMaskIntoConstraints = NO;
vi.translatesAutoresizingMaskIntoConstraints = NO;
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[imgView]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(imgView)]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[imgView]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(imgView)]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[vi]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(vi)]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[vi(44)]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(vi)]];
}

目前,全部都是在对UI进行设计,UI的最后一不就是对cell在controller中布局,自定义CollectionViewFlowLayout ,设置间距

@interface CollectionViewFlowLayout : UICollectionViewFlowLayout
    @property(nonatomic,assign) NSInteger columnCount;
    @property(nonatomic,strong) NSArray *dataList;
@end

设置Layout属性

-(void)loadData{
[self.shops addObjectsFromArray:[Shop shopsWithIndex:self.index]];
self.index++;
self.layout.minimumInteritemSpacing = 5;
self.layout.minimumLineSpacing = 5;
self.layout.columnCount = 3;
self.layout.dataList = self.shops;
self.collectionView.contentInset = UIEdgeInsetsMake(0, 5, 0, 5);
}

实现layout类,设计item的大小

/*
 *布局cell
 */
/**
准备布局,只要collectionView的布局发生了改变,就会调用此方法
注意:布局的准备,不是布局
*/
-(void)prepareLayout
{
//在准备布局中,完成frame的计算,然后给layoutAttributesForElementsInRect,计算cell宽度
//1.计算么cell宽度
//在cell中设置一行显示的个数,通过个数,确定宽度
CGFloat contentWidth = self.collectionView.bounds.size.width - self.collectionView.contentInset.left * 2 - self.minimumInteritemSpacing * (self.columnCount - 1);
CGFloat itemwidth = contentWidth / self.columnCount;
//2.计算cell 的高度,设置frame
[self attribute:itemwidth];
}

// 计算cell 的frame
-(void)attribute:(CGFloat)itemWidth{
//每一个attribute 的宽度都是相同的,但是高度却不一定相同,所以需要单独的计算每一个item的高度
//使用数组,记录一行 最后一个item的最大高度
CGFloat colHeight[self.columnCount];
NSInteger colCount[self.columnCount];
for (int i = 0;i<self.columnCount;i++) {
    colHeight[i] = 0;
    colCount[i] = 0;
}
NSMutableArray * arrayM = [[NSMutableArray alloc] initWithCapacity:self.dataList.count];
NSInteger index = 0;
for (Shop * shop in self.dataList) {
    //根据index 计算x,y坐标
    //行数
    NSInteger col = [self shortCol:colHeight];
    colCount[col]++;
    //x坐标
    CGFloat x = self.sectionInset.left + (self.minimumInteritemSpacing + itemWidth) * col;
    CGFloat y = colHeight[col];
    // 计算高度,等比例缩放
    // h * width/item.width
    CGFloat h = [self itemSize:CGSizeMake(shop.w, shop.h) itemWidth:itemWidth];
    
    //通过h 再计算每个item 的高度
    colHeight[col] += h + self.minimumLineSpacing;
    NSIndexPath *path = [NSIndexPath indexPathForItem:index                                                inSection:0];
    UICollectionViewLayoutAttributes * attr = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:path];
    attr.frame = CGRectMake(x, y, itemWidth, h);
    [arrayM addObject:attr];
    index++;
}
//找到最高列
NSInteger hightCol = [self HightestCol:colHeight];
CGFloat h = (colHeight[hightCol] - colCount[hightCol] * self.minimumLineSpacing)/colCount[hightCol];
NSLog(@"%f",h);
self.itemSize = CGSizeMake(itemWidth, h);

self.layoutAttributes = arrayM;
}
//找到最大得高度,itemSize的大小应该是最大高度/这列中item的个数
-(NSInteger)HightestCol: (CGFloat *)colHeight{
CGFloat max = 0;
CGFloat col = 0;
for (int i = 0; i < self.columnCount; ++i) {
    if (colHeight[i]>max) {
        max = colHeight[i];
        col = i;
    }
}
return  col;
}
// 找到最矮的那个col
-(NSInteger)shortCol:(CGFloat *)colHeight{
CGFloat min = MAXFLOAT;
NSInteger col = 0;
for (int  i = 0; i < self.columnCount ; ++i) {
    if (colHeight[i]<min) {
        min = colHeight[i];
        col = i ;
    }
}
return col;
}
//等比例 缩放
-(CGFloat)itemSize:(CGSize)size itemWidth:(CGFloat)itemWidth{
return size.height * itemWidth/ size.width;
}

/**  
 1.此方法返回collectionView中的所有的item
 2. 当执行这个方法的时候,会计算所有 ‘ 显示 ’的item,一旦计算完成,所有的属性都会被缓存,不会再进入这个方法
 3.可以提前计算出所有的itme的frame,返回返回一个items
 */
  -(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
{
return self.layoutAttributes;
}

最后
在CollectionViewController中实现 数据源方法,及代理方法

#pragma mark <UICollectionViewDataSource>
-(NSInteger)collectionView:(UICollectionView *)collectionView     numberOfItemsInSection:(NSInteger)section {

return self.shops.count;
}  

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
CollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
cell.shop = self.shops[indexPath.item];
cell.backgroundColor = [UIColor redColor];
return cell;
}
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section{
return CGSizeMake(367, 50);
}
//添加追加视图
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
if (kind == UICollectionElementKindSectionFooter) {
    
        self.footer  = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footer" forIndexPath:indexPath];
    UISwitch *switch1 = [UISwitch new];
    switch1.center = self.footer.center;
    [self.footer addSubview:switch1];

//        self.footer.backgroundColor = [UIColor whiteColor];
    return self.footer;
}
return nil;
}


-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    if (self.footer == nil || self.loading) {
    return;
}
if (scrollView.contentOffset.y + scrollView.bounds.size.height > self.footer.frame.origin.y) {
    NSLog(@"开始刷新");
    self.loading = YES;
    [self.footer.indicator startAnimating];
    //模拟 数据刷新
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [self loadData];
        self.footer = nil;
        self.loading = NO;
        [self.footer.indicator stopAnimating];
    });
    
}
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,347评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,435评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,509评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,611评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,837评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,987评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,730评论 0 267
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,194评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,525评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,664评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,334评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,944评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,764评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,997评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,389评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,554评论 2 349

推荐阅读更多精彩内容