iOS CollectionView FlowLayout与风火轮布局 (一)

一般来说,UITableVIew 与 UICollectionView 是iOS开发最重要的两个视图,现在市面上大量的App的布局都可以用这两者实现。

大多数初学者(新入行,包括我自己)可能对 UITableVIew 比较熟悉,而对 UICollectionVIew 了解的比较少,自己看过的几本iOS初级开发类的书籍,对 UICollectionView 也是一笔带过,而不像对 UITableView 那样介绍代码与View控件间交互流程、每个API的用法。一个偶然的机会,我便拾起了对 UICollectionVIew 的学习。

这里对自己学到的东西(见Demo),从三个方面做一个总结:

  • UICollectionView理解
  • UICollectionView FlowLayout学习与使用
  • UICollectionView自定义布局实现风火轮(Ray wenderlich上的教程)
  • 自定义supplementary view的使用
CollectionView Demo.gif

UICollectionView的理解

  • UICollectionView 与 UITableView 一样都是用来展示有序数据的方式。

  • 像 UITableView 一样,大多数 UICollectionView 用网格型(grid-like)呈现数据,但不像 UITableView 一列多行的方式,UICollectionView 支持多行多列方式的布局

  • UICollectionView 也支持其他方式的布局 环形(见demo)、栈型等几乎所有你能想到的布局方式

  • 像 UITableView 一样,UICollectionView 也有相类似的 datasource 来提供数据、delegate来管理交互

  • UICollectionView实现了展示与数据分离,方便了我们定义自己布局方式

  • 相同的数据,不同的collectionViewLayout,就能用不同布局方式展现,比如 demo 中点击右上角 switch 按钮就可以在 FlowLayout 与 环形布局间切换。

  • 像 UITableView 一样,UICollectionView 也有相类似的 datasource 来提供数据、delegate来管理交互

  • UICollectionViewDataSource 提供data

```
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
- (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath
- (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
  -   UICollectionViewDelegate 提供与collectioncell 的 selection 与highlighting 交互

##UICollectionView FlowLayout学习与使用

像 UITableView,使用 UICollectionView FlowLayout 允许你定义多个section,每个section有自己的cell、header、footer(如下图)。

![UICollectionViewFlowLayout布局.png](http://upload-images.jianshu.io/upload_images/223244-6400190b74ad45ab.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

UICollectionView FlowLayout实现了一种线形布局的方式,如下图所示:
![UICollectionViewFlowLayout 布局方式.png](http://upload-images.jianshu.io/upload_images/223244-d0fe62e10ab45121.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

如上图 UICollectionView 的滑动方向是上下,则每一个section则是从左到右的方式排列,当一行不足以放下一个cell时,这个cell就会放到下一行。

你可以通过 ```minimumLineSpacing``` 与 ```minimumInterItemSpacing``` 或者 UICollectionViewDelegateFlowLayout(其默认为UICollectionViewDelegate是同一个对象)的
  • (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  • (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
不过这两个值都只是参考,实际情况还是需要根据UICollectionView排列情况而定。
-  两个cell间的间距可能会大于实际值
-  如果cell不等大,上下两个item的间距就会不同

![4个cell不足已占满屏幕且放不下第五个](http://upload-images.jianshu.io/upload_images/223244-0cb0d932133f5214.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![cell不等大.png](http://upload-images.jianshu.io/upload_images/223244-1ec55d1f9874ca39.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

以下是实现demo种flow布局的代码:

pragma mark - collection view datasource

  • (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

    return 10;
    }

  • (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {

    return 1;
    }

  • (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

    MyCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:myCollectionViewCellIdentifier
    forIndexPath:indexPath];
    cell.indexLabel.text = [NSString stringWithFormat:@"%ld", indexPath.item + 1];
    cell.blankView.backgroundColor = indexPath.item % 2 ? [UIColor blueColor] : [UIColor redColor];

    return cell;
    }

pragma mark - uicollectionview flow layout delegate

  • (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    //返回每个cell大小
    return CGSizeMake(100, 100);
    }

  • (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section {
    //cell间最小间距
    return 10.0f;

}

  • (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section {
    //每个line间最小距离
    return 10.0f;
    }

  • (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
    //上、左、右与header与collectionview保持10的距离
    return UIEdgeInsetsMake(10, 10, 0, 10);
    }


###关于定义UICollectionViewFlowLayout子类
在几种情况下,你可能需要定义UICollectionViewFlowLayout子类,最常见的以下几种:
-  另外增加 supplementary 或者 decoration view
-  对UICollectionViewFlowLayout返回的每个cell的frame做改变

比如说可以重载
  • (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
方法对UICollectionViewFlowLayout计算出的默认位置,做出调整。如把第一个cell下移450个点

![自定义FlowLayout子类.png](http://upload-images.jianshu.io/upload_images/223244-d7c5bad51c1c2ba2.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

  • (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {

    NSArray<UICollectionViewLayoutAttributes *> *layoutAttributesArray = [super layoutAttributesForElementsInRect:rect];

    for (UICollectionViewLayoutAttributes *layoutAttributes in layoutAttributesArray) {

     if (layoutAttributes.indexPath.item == 0) {
          
          CGRect frame = layoutAttributes.frame;
    
          layoutAttributes.frame = frame;
          
          frame.origin.y = frame.origin.y + 450;
          frame.origin.x = frame.origin.x;
          
          layoutAttributes.frame = frame;
          
      }   
    

    return layoutAttributesArray;
    }

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

推荐阅读更多精彩内容