美文网首页
iOS 关于collectionView左滑问题

iOS 关于collectionView左滑问题

作者: 被风吹乱的思念 | 来源:发表于2018-09-06 18:02 被阅读206次
Untitled4.gif

不知道大家有没有碰见这样的问题。


Untitled5.gif

我是这么解决的,一开始我做了45个数据源,后来我改成5个分区,每个分区9个数据源才好的,不知道大家有没有好的解决方案,或者是这样做的原理。欢迎告知!

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return 45;
}
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 5;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return 9;
}

相关文章

网友评论

      本文标题:iOS 关于collectionView左滑问题

      本文链接:https://www.haomeiwen.com/subject/pgzxgftx.html