3

我正在尝试使用该scrollViewWillEndDragging:方法来滚动我自己的分页 UICollectionView,并在两侧进行预览,类似于 App Store 应用程序。但是,如果我停止无惯性拖动(即只需抬起我的手指),使用滚动视图下方的代码只会滚动到所需的矩形。如果我以任何惯性轻弹,该方法仍然会被调用,但滚动视图不会滚动所需的矩形,它只是继续滚动?

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView
                     withVelocity:(CGPoint)velocity
              targetContentOffset:(inout CGPoint *)targetContentOffset
{
    int itemWidth = 280;

    MyCollectionView *collectionView = (MyIndexedCollectionView *) scrollView;

    int totalPages = [self.colorArray[collectionView.index] count];
    int currentPage;
    int nextPage;

    if (lastContentOffset < (int)scrollView.contentOffset.x)
    {
        // moved right
        NSLog(@"scrolling right");
        double currentPageOffset = ceil((scrollView.contentSize.width - 
                                                 scrollView.contentOffset.x) / itemWidth);
        currentPage = totalPages - currentPageOffset;
        nextPage = currentPage >= totalPages ? totalPages : currentPage + 1;
    }
    else if (lastContentOffset > (int)scrollView.contentOffset.x)
    {
        // moved left
        NSLog(@"scrolling left");
        double currentPageOffset = floor((scrollView.contentSize.width - 
                                              scrollView.contentOffset.x) / itemWidth);
        currentPage = totalPages - currentPageOffset;
        nextPage = currentPage <= 0 ? 0 : currentPage - 1;
    }

    int xOffset = (nextPage * itemWidth);
    int nextOffsetPage = (totalPages - ((scrollView.contentSize.width - xOffset) /
                                                                       itemWidth)) + 1;

    [scrollView scrollRectToVisible:CGRectMake(xOffset,
                                           0,
                                           collectionView.bounds.size.width,
                                           collectionView.bounds.size.height)
                                           animated:YES];
}

放弃此方法后,我尝试使用该scrollViewWillBeginDecelerating:方法,并且完全相同的代码可以完美运行??我希望改用该scrollViewWillEndDragging:方法的原因有两个:

  • 我想根据滚动的速度调整它跳转到的项目
  • 如果您在没有任何惯性的情况下抬起手指来停止拖动,则不会调用该scrollViewWillBeginDecelerating:方法。

任何想法,我是否误解了这个回调在做什么?

4

1 回答 1

1

啊!!原来我应该一直使用targetContentOffset来设置我想滚动到的偏移量而不是scrollToRectToVisible:ala:

*targetContentOffset = CGPointMake(myTargetOffset, targetContentOffset->y);

实时调频 :)

于 2013-10-10T17:34:11.373 回答