无法获取UICollectionView当前页面

时间:2014-01-28 07:13:18

标签: ios uicollectionview

我使用以下代码在水平方向上对collection view进行了分页。

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.collectionView.pagingEnabled = YES;
    self.collectionView.directionalLockEnabled = YES;
    self.collectionView.bounces = NO;
    self.collectionView.showsHorizontalScrollIndicator = NO;
    self.collectionView.delegate = self;

    [self setup];

    self.pageControl.currentPage = 0;

    self.pageControl.numberOfPages = floor(self.collectionView.contentSize.width /   self.collectionView.frame.size.width) + 1;
}

我正在使用pageControl来指示我有多少页面和当前页面。

我使用类似于以下链接的方法来确定当前页面。

iOS6 UICollectionView and UIPageControl - How to get visible cell?

UICollectionView: current index path for page control

如下。

-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
    NSInteger currentPage = self.collectionView.contentOffset.x / self.collectionView.frame.size.width;
    self.pageControl.currentPage = currentPage;
}

然而,它不起作用。当我将collection view滑动到下一页时,pageControl仍然指向第一页。它没有改变它的价值。

我打印出self.collectionView.contentOffset.x值,它总是在框架内(这是第一页,即使我已经翻到下一页),它也永远不会进入下一页。

我做错了吗?

1 个答案:

答案 0 :(得分:5)

您是否考虑了细胞之间的间距?

试试这个:

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

    NSLog(@"Values: %f %f %f", self.collectionView.contentOffset.x, self.collectionView.frame.size.width, ceil(currentIndex));
}