How To Set The Spacing Of A Collection View Swift

[Solved] How To Set The Spacing Of A Collection View Swift | Swift - Code Explorer | yomemimo.com
Question : how to set the spacing of a collection view swift

Answered by : yellow-billed-hornbill-rvnzocfmwnva

 // Do any additional setup after loading the view, typically from a nib. 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

Source : https://stackoverflow.com/questions/28325277/how-to-set-cell-spacing-and-uicollectionview-uicollectionviewflowlayout-size-r | Last Update : Tue, 17 Mar 20

Answers related to how to set the spacing of a collection view swift

Code Explorer Popular Question For Swift