UICollectionView spacing margins

后端 未结 15 1001
一向
一向 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:40

    For adding margins to specified cells, you can use this custom flow layout. https://github.com/voyages-sncf-technologies/VSCollectionViewCellInsetFlowLayout/

    extension ViewController : VSCollectionViewDelegateCellInsetFlowLayout 
    {
        func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForItemAt indexPath: IndexPath) -> UIEdgeInsets {
            if indexPath.item == 0 {
                return UIEdgeInsets(top: 0, left: 0, bottom: 10, right: 0)
            }
            return UIEdgeInsets.zero
        }
    }
    

提交回复
热议问题