首先是需要自定义一个类的,这个类继承UICollectionViewCell,然后在.h文件中定义一些cell中可能需要的东西,比如说imageView,或者是label,然后开始编写.m文件
这个类的作用其实也就是一个东西的初始化,因此,有一个初始化函数
-(id)initWithFrame:(CGRect) frame
{
在这里可以将之前.h中定义的东西初始化,比如我之前说的imageView和label,并且设置他们的位置,背景颜色等等
一定不能忘了将你定义并初始化好的东西添加进去
[self.contentView addSubview: imageView];
}
现在开始编写ViewController.m
先要将之前自己定义好的类添加进去 #import “自定义的类”
在interface ViewController ()旁边添加collectionView的委托及其他<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
然后定义一个全局变量 UICollectionView
然后开始ViewDidLoad的书写
- (void)viewDidLoad {
//必须先初始化UICollectionViewFlowlayout, 直接init就可以 比如说初始化为flowlayout
UICollectionViewFlowLayout * flowLayout = [[UICollectionViewFlowLayout alloc] init];
//设置HeaderView的尺寸
flowLayout.headerReferenceSize = CGSizeMake(self.view.frame.size.width, 100);
//然后才能初始化UICollectionView,因为初始化她的时候必须要用到上面的flowLayout
mainCollectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 20, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) collectionViewLayout:flowLayout];
//可以设置背景颜色
//然后将其添加
[self.view addSubview:mainCollectionView];
//接下来就是注册cell //注册collectionViewCell
[mainCollectionView registerClass:[CollectionViewCell class] forCellWithReuseIdentifier:@"cellId"];
//注册headerView
[mainCollectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"reusableView"];
//设置代理
mainCollectionView.delegate = self;
mainCollectionView.dataSource = self;
}
//返回section个数 也就是组数
- (NSInteger) numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 3;
}
//这个是每组的个数,单元数
- (NSInteger) collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return 9;
}
//生成cell 生成cell所用的类就是我们之前所自定义的类,所以自定义的ImageView以及label都可以用上
- (UICollectionViewCell *) collectionView:(UICollectionView *) collectionView cellForItemAtIndexPath:(nonnull NSIndexPath *)indexPath
{
//初始化,indexPath就是生成的索引路径
//这个 dequeueReusableCellWithReuseIdentifier:的值必须与上面注册cell 的值一致
CollectionViewCell * cell = (CollectionViewCell *)[collectionView dequeueReusableCellWithReuseIdentifier:@"cellId" forIndexPath:indexPath];
//botLabel就是在创建Collectroller.m时加的属性 还有一个TopImage 好像都没有用上
cell.botLabel.text = [NSString stringWithFormat:@"{%ld,%ld}",(long)indexPath.section,(long)indexPath.row];
cell.backgroundColor = [UIColor yellowColor];
return cell;
}
//设置每个item的尺寸 这个才是背景为黄色的item
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
return CGSizeMake(90, 130);
}
//设置每个item的UIEdgInsets 相对于上左下右四个边界的位移
- (UIEdgeInsets) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
return UIEdgeInsetsMake(10, 10, 10, 10);
//return UIEdgeInsetsMake(10, 10, 0, 0);
}
//设置每个item的水平间距
- (CGFloat) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
{
return 10;
}
//行间距 也就是所谓的水平间距
- (CGFloat) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
{
return 15;
}
//通过设置supplementaryView来设置头部或者底部的View
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
//这个的withReuseIdentifier 要与之前注册时写的一样
UICollectionReusableView * headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"reusableView" forIndexPath:indexPath];
headerView.backgroundColor = [UIColor grayColor];
UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(headerView.bounds.size.width/2 - 60, headerView.bounds.size.height/2 - 20, 120, 40)];
label.text = @"这个是头部";
label.font = [UIFont systemFontOfSize:20];
[label setBackgroundColor:[UIColor whiteColor]];
[headerView addSubview:label];
return headerView;
}
//点击item的方法 之前貌似都没有加任何东西,直接就有了这个点击函数了,厉害啊
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
CollectionViewCell * cell = (CollectionViewCell *)[collectionView cellForItemAtIndexPath:indexPath];
NSString * msg = cell.botLabel.text;
NSLog(@"%@",msg);
}
网友评论