UICollectionView spacing margins

后端 未结 15 999
一向
一向 2020-11-30 16:58

I have a UICollectionView which shows photos. I have created the collectionview using UICollectionViewFlowLayout. It works good but I would like to

15条回答
  •  無奈伤痛
    2020-11-30 17:44

    - (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {       
             return UIEdgeInsetsMake(7, 10, 5, 10);    
       }
    

提交回复
热议问题