第十三篇OC_UICollectionView的基本配置

Posted 久冬不雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十三篇OC_UICollectionView的基本配置相关的知识,希望对你有一定的参考价值。

- (UICollectionView *) categoryCollectionView
{
    if (! _categoryCollectionView) {
        
        // 创建布局
        UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc]init];
        layout.itemSize = CGSizeMake(KItemWidth,KItemHeight);
        layout.minimumInteritemSpacing = KSpace;
        layout.minimumLineSpacing = KSpace;
        layout.headerReferenceSize = CGSizeMake(KScreentW,KProductHeaderCellH);
        
        _categoryCollectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:layout];
        _categoryCollectionView.dataSource = self;
        _categoryCollectionView.delegate = self;
        _categoryCollectionView.backgroundColor = [UIColor colorWithRed:234.0/255 green:234.0/255 blue:234.0/255 alpha:1];
        
        // 注册
        [_categoryCollectionView registerNib:[UINib nibWithNibName:@"GFBCategoryCollectionViewCell" bundle:nil] forCellWithReuseIdentifier:KProductCell];
        [_categoryCollectionView registerNib:[UINib nibWithNibName:@"GFBCategoryCollectionReusableView" bundle:nil] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:KProductHeaderCell];
        
        // 设置内边距,添加轮播图
        _categoryCollectionView.contentInset = UIEdgeInsetsMake(KBanerH, 0, 0, 0);

    }
    return _categoryCollectionView;
}

 

以上是关于第十三篇OC_UICollectionView的基本配置的主要内容,如果未能解决你的问题,请参考以下文章

python学习[第十三篇] 条件和循环

第十三篇jQuery Mobile

OpenCV入门指南第十三篇 人脸检测

C++从入门到入土第十三篇:vector的模拟实现

Spring Cloud第十三篇 | Spring Boot Admin服务监控

Python之路第十三篇--DOM