Only my second time using UICollectionView\'s and perhaps I have bitten off more than I can chew but nevertheless:
I am implementing a UICollectionView (myCollection
If your class is subclass from UICollectionviewController and you are creating collectionView programmatically then use
let layout = UICollectionViewFlowLayout() layout.scrollDirection = .Vertical layout.itemSize = CGSizeMake(50, 50) collectionView?.setCollectionViewLayout(layout, animated: false)