滚动视图didEndDragging时预测可见索引路径

时间:2015-11-10 18:20:53

标签: ios uiscrollview uicollectionview

我有一个具有水平流布局和固定宽度单元格的集合视图。当用户结束拖动时,我希望在减速完成时获取可见的项目的内容获得先机。

为此,我需要在减速结束时可见的索引路径。我认为这段代码有效,但是很蹩脚(出于显而易见的原因,我认为,其中只有一些在评论中描述):

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
    // already bummed here: 
    // a) this seems the wrong way to get the fixed cell width
    // b) sad that this method precludes variable width cells
    UICollectionViewLayoutAttributes *la = [self.collectionView.collectionViewLayout layoutAttributesForElementsInRect:self.collectionView.bounds][0];
    CGFloat width = la.size.width;

    // this must be wrong, too.  what about insets, header views, etc?
    NSInteger firstVisible = floorf(targetContentOffset->x / width);

    NSInteger visibleCount = ceilf(self.collectionView.bounds.size.width / width);
    NSInteger lastVisible = MIN(firstVisible+visibleCount, self.model.count);
    NSMutableArray *willBeVisibleIndexPaths = [@[] mutableCopy];

    // neglecting sections
    for (NSInteger i=firstVisible; i<lastVisible; i++) {
        [willBeVisibleIndexPaths addObject:[NSIndexPath indexPathForItem:i inSection:0]];
    }
}

这是很多脆弱的代码,可以做一些看起来很简单的事情。如果我想要它处理部分,插图,辅助视图,可变单元格等,它很快就会成为一个错误,低效的纠结。

请告诉我,我在sdk中已经遗漏了一些简单的东西。

1 个答案:

答案 0 :(得分:1)

我认为最好使用UICollectionView indexPathForItemAtPoint:方法。

根据targetContentOffset和集合视图&#39; s contentSize计算集合视图的可见区域的左上角和右下角。

然后使用这两个点来获得两个对应的indexPath值。这将为您提供firstVisiblelastVisible索引路径。

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
    UICollectionView *collectionView = (UICollectionView *)scrollView;
    CGPoint topLeft = CGPointMake(targetContentOffset->x + 1, targetContentOffset->y + 1);
    CGPoint bottomRight = CGPointMake(topLeft.x + scrollView.bounds.size.width - 2, topLeft.y + scrollView.bounds.size.height - 2);

    NSIndexPath *firstVisible = [collectionView indexPathForItemAtPoint:topLeft];
    firstVisible = (firstVisible)? firstVisible : [NSIndexPath indexPathForItem:0 inSection:0];
    NSIndexPath *lastVisible = [collectionView indexPathForItemAtPoint:bottomRight];
    lastVisible = (lastVisible)? lastVisible : [NSIndexPath indexPathForItem:self.model.count-1 inSection:0];

    NSMutableArray *willBeVisibleIndexPaths = [@[] mutableCopy];
    for (NSInteger i=firstVisible.row; i<lastVisible.row; i++) {
        [willBeVisibleIndexPaths addObject:[NSIndexPath indexPathForItem:i inSection:0]];
    }
}

这只是部分解决方案。最有可能的情况是lastVisiblenil。您需要检查并将lastVisible设置为集合的最后indexPath。由于这些点位于页眉或页脚视图中,firstVisiblelastVisible可能是nil也是可能的。