UICollecionView的创建和属性使用

//UICollectionViewLayout 布局类的父类

//UICollectionViewFlowLayout 系统自带布局类

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

//设置每个Item的大小

//collectionView中的列数,不是确定,间隔也不是确定

flowLayout.itemSize = CGSizeMake(80, 80);

//列最低间隔

flowLayout.minimumInteritemSpacing = 20;

//行最低间隔

flowLayout.minimumLineSpacing = 20;

//分区内所有item区域距离边框和分区头的宽度

//上、左、下、右逆时针的顺序

flowLayout.sectionInset = UIEdgeInsetsMake(50, 10, 100, 10);

//设置滚动方向

flowLayout.scrollDirection = UICollectionViewScrollDirectionVertical;

//创建UICollectionView

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

//UICollectionView 严格遵守MVC模式

collectionView.dataSource = self;

collectionView.delegate = self;

//注册CollectionViewCell

[collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"reuse”];

//注册分区头

[collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headerView”];

//注册分区尾巴

[collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footerView”];

#pragma mark UICollectionView的协议方法

#pragma mark 设置分区个数

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView

#pragma mark 设置分区头和尾

-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath

{

//collectionView的分区头和分尾都遵从重用机制

//判断类型为头或为尾

if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {

UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headerView" forIndexPath:indexPath];

headerView.backgroundColor = [UIColor grayColor];

return headerView;

}

else

{

//通过重用标识和类型获取对应的重用view

UICollectionReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footerView" forIndexPath:indexPath];

footerView.backgroundColor = [UIColor yellowColor];

return footerView;

}

}

#pragma mark 返回分区有多少个Item (默认是有一个分区)

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

{

return self.dataArray.count;

}

#pragma mark 点击方法

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

#pragma mark UICollectionViewLayout 的协议方法

#pragma makr 设置分区头的size

-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section

{

//横向滚动时,高度无效

//纵向滚动时,宽度无效

return CGSizeMake(20, 100);

}

//item在显示之前会调动这个方法布局

//计算所有Item的布局

-(void)prepareLayout

//返回整个布局的contentSize(可滚动区域)

-(CGSize)collectionViewContentSize

你可能感兴趣的:(UICollecionView的创建和属性使用)