UICollectionView的基本使用

UICollectionView在目前的iOS开发中,使用非常广泛。它继承自UIScrollView,可以根据需要自定义各种各样复杂的布局。

使用

  • 遵循两个协议
    数据源协议UICollectionViewDataSource
    代理方法协议UICollectionViewDelegate

  • 注册cell

[collectionView registerClass:[MyCollectionViewCell class] forCellWithReuseIdentifier:@"cellID"];
  • 布局参数对象UICollectionViewFlowLayout
    这也是UICollectionView的精髓所在,正是通过它,我们才实现了UICollectionView各式各样的布局。

系统提供了两个UICollectionView的布局类:
1.UICollectionViewLayout
是一个抽象类,我们在自定义布局的时候可以继承此类,并在此基础上设置布局信息。
2.UICollectionViewFlowLayout
继承于UICollectionViewLayout,是系统写好的布局类,该类为我们提供了一个简单的布局样式。假如我们只需要一个特别简单的网格布局或者流水布局,可以直接使用它。

创建

不能用init的方式,因为必须提供一个不为空的layout布局参数,给它布局。

1、创建流水布局layout

在其中设定相关属性,如Item的大小等

    UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];

    // 设置item的行间距和列间距
    layout.minimumInteritemSpacing = kLineSpacing;
    layout.minimumLineSpacing = kLineSpacing;

    // 设置item的大小
    CGFloat itemW = kScreenWidth / 2.5 ;
    layout.itemSize = CGSizeMake(itemW, itemW);

    // 设置每个分区的 上左下右 的内边距
    layout.sectionInset = UIEdgeInsetsMake(5, 5 ,5, 5);
    
    // 设置区头和区尾的大小
    layout.headerReferenceSize = CGSizeMake(kScreenWidth, 65);
    layout.footerReferenceSize = CGSizeMake(kScreenWidth, 65);

    // 设置分区的头视图和尾视图 是否始终固定在屏幕上边和下边
    layout.sectionFootersPinToVisibleBounds = YES;

    // 设置滚动条方向
    layout.scrollDirection = UICollectionViewScrollDirectionVertical;  
2、利用layout 创建collecView
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
    collectionView.backgroundColor = [UIColor witheColor];
    collectionView.showsVerticalScrollIndicator = NO;   //是否显示滚动条
    collectionView.scrollEnabled = YES;  //滚动使能

    //3、添加到控制器的view
    [self.view addSubview:collectionView];
    _mainCollectionView = collectionView;

    //4、布局
    [_mainCollectionView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.left.bottom.right.equalTo(self.view);
    }];
5、注册cell

一般是自定义的cell。需要注册不同的cell,可由不同的cell的ID决定。

    [self.mainCollectionView registerClass:[PDcollectionVertivalCell class] 
forCellWithReuseIdentifier:@"MAINCOLLECTIONVIEWID"];
6、注册头部视图
    [self.mainCollectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader 
withReuseIdentifier:@"MAINCOLLECTIONVIEWHEADER"];
7、遵守协议,设置代理
<UICollectionViewDelegate,UICollectionViewDataSource>

    self.mainCollectionView.delegate = self;
    self.mainCollectionView.dataSource = self;

数据源方法

#pragma mark -collectionview 数据源方法
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {

    return 6;   //返回section数
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

    return self.normalGoodLists.count;  //每个section的Item数
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    创建item / 从缓存池中拿 Item
    PDcollectionVertivalCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"MAINCOLLECTIONVIEWID" forIndexPath:indexPath];
    // 外界在此给Item添加模型数据
    if(self.normalGoodLists.count > 0){
        PDshopItem *item = self.normalGoodLists[indexPath.item];
        cell.cheapShopItem = item;
    }
    return cell;
    
}

创建头部视图

#pragma mark - 头部视图
-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
    
    UICollectionReusableView *headView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader 
withReuseIdentifier:@"MAINCOLLECTIONVIEWHEADER" forIndexPath:indexPath];
    // ID必须与注册ID一样
   
    if(indexPath.section == 0){
        
        [headView addSubview:self.cycleScrollView];  //任何自定义view
        [self.cycleScrollView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.left.bottom.right.equalTo(headView);
        }];
        return headView;
    }
}

#pragma mark - 头部视图的尺寸
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{
    
    if(section ==0 ){
        
        return CGSizeMake(screenW, 0.4*screenW);
    }
    else if(section ==1 ){
        
        return CGSizeMake(screenW, 0.25253*screenW);
    }
}

代理方法--点击事件

#pragma mark - 点击 某个Item时 调用
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
    [collectionView deselectItemAtIndexPath:indexPath animated:YES];//取消选中
    //do something ...
}    

UICollectionViewCell

UICollectionView的item,就是一个cell。

  • cell的内容——自定义
    默认的cell是UICollectionViewCell对象,它没有任何子控件,所以必须自定义cell(继承自UICollectionViewCell),添加所需的子控件。

  • cell的属性——由flowlayout决定,在创建流水布局参数时设定好。

自定义cell

继承自UICollectionViewCell,在.h文件中,添加数据模型属性,用于后续设置cell的内容

#import <UIKit/UIKit.h>
#import "PDshopItem.h"


@interface PDcollectionViewCell : UICollectionViewCell

@property(nonatomic,strong)PDshopItem *shopItem;    //数据模型

@end

在.m文件中

@interface PDcollectionViewCell()

@property(nonatomic,weak)UIImageView *shopImgView;
@property(nonatomic,weak)UILabel *shopNameLabel;

@end

// 在init方法中添加子控件
-(id)initWithFrame:(CGRect)frame{

    if([super initWithFrame:frame]){
    //创建子控件、布局
    ... ... 
    }
    return self;
}

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

推荐阅读更多精彩内容