美文网首页
UICollectionViewFlowLayout

UICollectionViewFlowLayout

作者: 一个萝卜X个坑 | 来源:发表于2018-03-05 17:55 被阅读7次
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

      本文链接:https://www.haomeiwen.com/subject/cknhfftx.html