UICollectionViewFlowLayout

UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
        /**cell左右之间的距离*/
        flowLayout.minimumInteritemSpacing = 10;
        /**cell上下之间的距离*/
        flowLayout.minimumLineSpacing = 5;

        /**第一个参数是第一排cell距离顶部的距离
         第二个参数是左边第一列的cell距离左边的距离
         第三个参数是最底部那一行cell距离底部的距离
         第四个参数是最右边那一列的cell距离右边的距离
         */
        flowLayout.sectionInset = UIEdgeInsetsMake(5, 10, 5, 10);
        self.specialcltView=[[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:flowLayout];

你可能感兴趣的:(UICollectionViewFlowLayout)