Use the flow layout and set the scroll direction to βHorizontalβ to fix the problem.
let flowLayout = UICollectionViewFlowLayout() flowLayout.itemSize = CGSizeMake(UIScreen.mainScreen().bounds.width/2 - 10, 190) flowLayout.sectionInset = UIEdgeInsetsMake(0, 5, 0, 5) flowLayout.scrollDirection = UICollectionViewScrollDirection.Horizontal flowLayout.minimumInteritemSpacing = 0.0 mainHomeCollectionView.collectionViewLayout = flowLayout
source share