UICollectionView does not scroll

前端 未结 3 2020
清酒与你
清酒与你 2020-12-13 17:18

I have a UICollectionView set up with a UICollectionViewDataSource that currently provides six items. These are fewer than needed to fill the scree

3条回答
  •  渐次进展
    2020-12-13 17:51

    Setting the height of the UICollectionView to size of UIView will make your scrolling problem disabled. If the UICollectionView is 568 pixels tall then it will only ever need to scroll if it has more than 568 pixels worth of content in it. You should set it to the height of the view it is contained in (same as the width).

    Hope it helps you.

提交回复
热议问题