5

我正在我的 iOS 应用程序中实现 UICollectionView。我有它,所以每个单元格都是屏幕的宽度,我想要它,所以当水平滚动时它会锁定到可见单元格并将其移动到屏幕的中心。我下面的代码仅适用于第一个单元格。我不明白如何让它适用于用户可见的任何单元格。

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
    int index  = 0;
    for (TextCell * t in [_tabBarCollectionView visibleCells]) {
        if ((t.center.x>0)&&(t.center.x<[[UIScreen mainScreen]bounds].size.width)) {
            [_tabBarCollectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:YES];
            break;
        }
        index++;
    }

}
4

1 回答 1

4

您可以为集合视图打开分页,它会产生这种效果。转到添加了集合的 xib 文件或情节提要并在其属性下启用分页。

于 2013-04-27T19:57:20.043 回答