IOS学习 collectionView 的创建

@implementation HomeViewController

//定义重用标识符

static NSString *identifier = @"collectionCell";


- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

    /*

     collectionView 必须有一个layout

     storyboard上拖拽的时候,已经自动增加一个 流水布局

     UICollectionView must be initialized with a non-nil layout parameter

     

    实例化一个layout对象:collectionView如果要实例化一个layout,必须在实例化的时候就进行设置

    

     UICollectionViewLayout       是流水布局的父类,是最纯净的layout

    UICollectionViewFlowLayout   在父类上做了扩展

     */

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

    

    //修改cell的大小  默认宽高为50

    flowLayout.itemSize = CGSizeMake(100, 100);

    

    //实例化一个collectionView

    UICollectionView *collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:flowLayout];

    [self.view addSubview:collectionView];

    

    //设置代理

    collectionView.dataSource = self;

    collectionView.delegate = self;

    

    //注册一个collectionCell

    [collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:identifier];

    

    //设置背景色

    collectionView.backgroundColor = [UIColor whiteColor];

   

}


//

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

    return 1;

}


//

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

    return 100;

}


//每一行的内容

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

    //从缓存池中去找

    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

    cell.backgroundColor = [UIColor redColor];    

    return cell;

}


//取消选中

- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath{

    NSLog(@"取消选中 - %ld",indexPath.item);

}


//被选中

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{

    //item 相当于row

    NSLog(@"选中 - %ld",indexPath.item);

}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值