检测UICollectionView中的页面更改

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测UICollectionView中的页面更改相关的知识,希望对你有一定的参考价值。

我尝试了一段时间找到这个问题,但找不到这个问题的答案。我的问题是我有一个UICollectionView和滚动方向是HorizontalPaging Enabled。我的问题是我想要保持用户所在的当前页码的大头针,所以我创建了一个int变量,现在每次用户向右或向左滑动时都要加1或减去它。我尝试使用scrollView的代表

- (void)scrollViewDidScroll:(UIScrollView *)scrollView

但是当用户向右或向左滑动时,它被调用的次数与UICollectionView页面上的列数一样多,而且不会让我知道用户是去了下一页还是前一页。

答案

使用 :

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    CGFloat pageWidth = collectionView.frame.size.width;
    float currentPage = collectionView.contentOffset.x / pageWidth;

    if (0.0f != fmodf(currentPage, 1.0f))
    {
        pageControl.currentPage = currentPage + 1;
    }
    else
    {
        pageControl.currentPage = currentPage;
    }

    NSLog(@"Page Number : %ld", (long)pageControl.currentPage);
}

如果您没有使用任何pageControl,那么ceil(currentPage)将是您当前的页码。

另一答案

Swift 3 Xcode 8.2

func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
        let x = scrollView.contentOffset.x
        let w = scrollView.bounds.size.width
        let currentPage = Int(ceil(x/w))
        // Do whatever with currentPage.
}
另一答案

你可以得到如下的当前页面,索引将从0(total page - 1)

-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
 {
    CGFloat pageWidth = scrollView.frame.size.width;
    int page = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
    NSLog(@"Current page -> %d",page);
}
另一答案

根据@Shankar BS的回答,我在Swift中实现了这个。请记住,UICollectionViewDelegate符合ScrollView Delegate:

func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
    let pageWidth = scrollView.frame.size.width
    let page = Int(floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1)
    print("page = (page)")
}
另一答案

Swift 2.2

 func scrollViewDidEndDecelerating(scrollView: UIScrollView) {
    let x = collectionView.contentOffset.x
    let w = collectionView.bounds.size.width
    let currentPage = Int(ceil(x/w))
    print("Current Page: (currentPage)")
}

以上是关于检测UICollectionView中的页面更改的主要内容,如果未能解决你的问题,请参考以下文章

UICollectionView滚动更改页面控制器索引swift3?

如何在单元格大小更改后自动调整 CollectionViewCell 中的内容大小?

如何更改 UICollectionView 中的滚动方向?

滚动时 Uicollectionview 不更新标题

单击 UIButton 时切换/更改 UICollectionView 中的单元格

更改数据源时 UICollectionView 中的平滑动画