UICollectionView with Paging Enable

前端 未结 7 1562
天命终不由人
天命终不由人 2021-02-06 09:06

I have to create Grid view like Appstore iOS app. I want to do this with UICollectionView paging. I have also implemented the code but not able to scroll like that.

Wha

7条回答
  •  甜味超标
    2021-02-06 09:34

    Have you tried setting the scroll direction of your UICollectionViewFlowLayout to horizontal?

    [yourFlowLayout setScrollDirection:UICollectionViewScrollDirectionHorizontal];

    You'll need to enable paging on your collection view like so:

    [yourCollectionView setPagingEnabled:YES];

提交回复
热议问题