我正在我的 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++;
}
}