I have a UICollectionView with a custom UICollectionViewFlowLayout. It scrolls horizontally and only shows one item at a time (full height). I have pagingEnabled = YES so that i
UICollectionView
has the properties alwaysBounceHorizontal
and alwaysBounceVertical
. Setting the horizontal to YES did
the trick.
Thanks for @VaporwareWolf ,the answer is correct. I want to add a supplement that:
DO NOT forget setting the
bounces
property toYES
at the same time(through storyboard or your code).