Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable vertical scrolling in UICollectionView programmatically

I have a UICollectionView in a UITableViewCell. The height of the table view cell is set to the height of the collection view so the collection view only scrolls horizontally.

Sometimes when scrolling in the table view the collection view will capture the vertical scrolls and bounce scroll vertically. I've set the height to 0 in -collectionViewContentSize in my custom layout.

How do I completely disable vertical scrolling in a collection view?

like image 294
Berry Blue Avatar asked Nov 05 '15 22:11

Berry Blue


1 Answers

In your storyboard - click your UICollectionView and open Utilities. Under the Attributes Inspector, center button, look to 'Bounces'. Uncheck "Bounces Vertically".

like image 173
Peter Avatar answered Nov 17 '22 15:11

Peter