Enable bounce/scroll for UICollectionView while no cells
Swift Solution
collectionView.alwaysBounceVertical = true
Change this setting in your storyboard:
Do it like this:
self.collectionView.alwaysBounceVertical = YES;
answer by @VNJ at here