Created
August 10, 2017 11:35
-
-
Save iAmrSalman/fe98647d3cf60321a3a986b202061061 to your computer and use it in GitHub Desktop.
[collectionView cell sizing] #swift3 #collectionview #layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func setupCellSizing() { | |
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout() | |
layout.sectionInset = UIEdgeInsets(top: 20, left: 0, bottom: 10, right: 0) | |
layout.itemSize = CGSize(width: screenWidth/3, height: screenWidth/3) | |
layout.minimumInteritemSpacing = 0 | |
layout.minimumLineSpacing = 0 | |
collectionView!.collectionViewLayout = layout | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment