You need to change the layout of the CollectionView. Probably the easiest thing is to make it a Flow layout and set its properties there. Here is an example:
let layout = UICollectionViewFlowLayout() layout.minimumInteritemSpacing = 5 layout.sectionInset = EdgeInsets(top: 10, left: 10, bottom: 10, right: 10) layout.minimumLineSpacing = 8 self.collectionView.collectionViewLayout = layout
If you want to do much more than this with respect to the layout of the elements, you need to subclass the UICollectionViewLayout and override the various layout methods.
source share