Skip to content

Instantly share code, notes, and snippets.

@iAmrSalman
Created August 10, 2017 11:35
Show Gist options
  • Save iAmrSalman/fe98647d3cf60321a3a986b202061061 to your computer and use it in GitHub Desktop.
Save iAmrSalman/fe98647d3cf60321a3a986b202061061 to your computer and use it in GitHub Desktop.
[collectionView cell sizing] #swift3 #collectionview #layout
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