学习UICollectionView

我们使用UITableView实现了很多不同的用户界面,但是对于有些需求,比如横向滑动列表等等!它能发挥的作用还是有限的。后来,苹果在iOS 6中增加了一个类 — UICollectionView,用来弥补表视图的不足。UICollectionView和UITableView有很多相似之处,比如都有数据源和代理方法,以及需要注册cell以便重用。

UICollectionView的工作流程:
数据源方法,用来提供数据相关的内容
  • numberOfSectionsInCollectionView:
  • collectionView: numberOfItemsInSection:
  • collectionView: cellForItemAtIndexPath:
  • collectionView: viewForSupplementaryElementOfKind: atIndexPath: // 用于headerView和footerView
代理方法,负责用户交互,比如管理视图的高亮,选中,编辑
  • collectionView:shouldDeselectItemAtIndexPath:
  • collectionView:didSelectItemAtIndexPath:
  • collectionView:didDeselectItemAtIndexPath:
  • collectionView:shouldHighlightItemAtIndexPath:
  • .....

接下来实现如下图的效果:



第一步,肯定是创建一个基于Single View Application模板的项目啦。打开Main.storyboard文件,选中里面的视图控制器并删掉,拖曳一个Collection View Controller进去,在Identity inspector修改好视图控制器的名称。这里命名为FTTViewController。

自定义单元

需要两个单元,一个用于包含单词的单元,一个用作分区标题的单元。首先创建第一个单元,继承于UICollectionViewCell。

#import <UIKit/UIKit.h>

@interface FTTContentCell : UICollectionViewCell
@property (strong, nonatomic) UILabel *label;
@property (copy, nonatomic) NSString *text;
@property (strong, nonatomic) UILabel *lineLabel;
+ (CGSize)sizeForContentString:(NSString *)str; //根据字符串的长度来计算出单元的大小
@end

接着切换到FTTContentCell.m文件,重写initWithFrame:方法


- (id)initWithFrame:(CGRect)frame {

    self = [super initWithFrame:frame];
    if (self) {
        self.label = [[UILabel alloc] initWithFrame:self.contentView.bounds];
        self.label.opaque = NO;
        self.label.backgroundColor = [UIColor colorWithRed:0.8
                                                     green:0.9
                                                      blue:1.0
                                                     alpha:1.0];
        self.label.textColor = [UIColor blackColor];
        self.label.textAlignment = NSTextAlignmentCenter;
        [self.contentView addSubview:self.label];
        
        self.lineLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, self.contentView.bounds.origin.y + self.label.frame.size.height, self.contentView.bounds.size.width , 1)];
        self.lineLabel.backgroundColor = [UIColor redColor];
        [self.contentView addSubview:self.lineLabel];  
    }
    return self;
}

计算单元的合适尺寸

+ (CGSize)sizeForContentString:(NSString *)str {
    CGSize maxSize = CGSizeMake(300, 1000);
    NSStringDrawingOptions opts = NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading;
    NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
   
    [style setLineBreakMode:NSLineBreakByCharWrapping];
    NSDictionary*attributes = @{NSFontAttributeName: [self defaultfont],
                                NSParagraphStyleAttributeName: style};
    CGRect rect = [str boundingRectWithSize:maxSize options:opts attributes:attributes context:nil];
    
    return rect.size;
}

接着,创建一个FTTHeaderCell文件,让它继承FTTContentCell,在FTTHeaderCell.m中做一下修改,覆盖掉initWithFrame:方法,改变单元的外观。

- (id)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        self.label.backgroundColor = [UIColor colorWithRed:0.9 green:0.9 blue:0.8 alpha:1.0];
        self.label.textColor = [UIColor blackColor];
    }
    return self;
}

最后呢,选中FTTViewController.m文件,导入FTTHeaderCell.h和FTTContentCell.h。在viewDidLoad方法中定义好数据。
如前面所说,与UITableView很相似,UICollectionView同样需要基于一个标识符来注册需复用的单元类。

 self.sections = @[
                      @{@"header": @"First", @"content": @"I believe that tomorrow will be a sunday! Do you believe me?"},
                      
                      @{@"header": @"second", @"content": @"when everything would be fine."},
                      
                      @{@"header": @"Third", @"content": @"That will be great"},
                      
                      @{@"header": @"Fouth", @"content": @"How are you today?"},
                      
                      ];

    [self.collectionView registerClass:[FTTContentCell class] forCellWithReuseIdentifier:@"CONTENT"];
    self.collectionView.backgroundColor = [UIColor whiteColor];

    UICollectionViewLayout *layout = self.collectionView.collectionViewLayout;
    UICollectionViewFlowLayout *flow = (UICollectionViewFlowLayout *)layout;

    [self.collectionView registerClass:[FTTHeaderCell class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HEADER"];

对字符串进行处理,将其分离出一个一个的单词,并存到一个数组中。

- (NSArray *)wordsInSection: (NSInteger) section {
    NSString *content = self.sections[section][@"content"];
    NSCharacterSet *space = [NSCharacterSet whitespaceAndNewlineCharacterSet];
    NSArray *words = [content componentsSeparatedByCharactersInSet:space];
    return words;
}

实现数据源方法:

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return [self.sections count];
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    NSArray *words = [self wordsInSection:section];
    return [words count];
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    NSArray * words = [self wordsInSection:indexPath.section];
    FTTContentCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:@"CONTENT" forIndexPath:indexPath];
    cell.text = words[indexPath.row];
    return cell;    
}

到这里,构建并运行应用,会发现单词的布局很混乱,此时,需要一个辅助类来处理下布局,这个类就是UICollectionViewFlowLayout啦,实现其中的一个委托方法,它用于得到分区中的单词,调用FTTContentCell类中的一个方法计算出单元的尺寸。

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    NSArray *words = [self wordsInSection:indexPath.section];
    CGSize size = [FTTContentCell sizeForContentString:words[indexPath.row]];
    return size;
}

为视图中的每个分区提供一个分区标题:


- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
    if ([kind isEqual:UICollectionElementKindSectionHeader]) {
        FTTHeaderCell *cell = [self.collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"HEADER" forIndexPath:indexPath];
        cell.text = self.sections[indexPath.section][@"header"];
        return cell;
    }
    return nil;
}

现在,构建并运行,咦?标题怎么没有呢?!其实,标题没有出现是因为UICollectionViewFlowLayout不会为标题视图提供任何的显示空间,所以,需要对标题视图作明确的尺寸指定。在viewDidLoad方法中对属性headerReferenceSize做下设置就好啦。

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

推荐阅读更多精彩内容

  • 翻译自“Collection View Programming Guide for iOS” 0 关于iOS集合视...
    lakerszhy阅读 3,810评论 1 22
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • Oozie 第一个版的监控是自定义的,后面引进了 做监控当下主流的框架 Codahale Metrics 本文从o...
    PunyGod阅读 1,601评论 0 1
  • 春节家族聚会的一个晚宴,我们许多从小一起玩到大的兄弟姐妹们又重新聚在了一起。表弟最后一个入席,坐在了我的身...
    温闻阅读 1,377评论 0 0
  • 从《追击者》到《恐怖直播》, 河正宇大叔的演技一直带给观众惊喜, 这部《隧道》更是刷爆朋友圈的良心之作, 和同期上...
    第一影评人阅读 1,206评论 7 17