我正在使用 UICollectionView,单击按钮后需要滚动到第一个单元格。
该按钮位于我的集合视图中的(大)标题部分...单击它时,我需要滚动到位于该按钮下方的第一个单元格。
我创建了此按钮的操作,但我不知道如何滚动到第一个 UICollectionViewCell。
有人可以帮助我吗?
使用这个委托方法,将indexPath设置在第一个位置:
斯威夫特
self.collectionView?.scrollToItemAtIndexPath(NSIndexPath(forItem: 0, inSection: 0),
atScrollPosition: .Top,
animated: true)
斯威夫特3
self.collectionView?.scrollToItem(at: IndexPath(row: 0, section: 0),
at: .top,
animated: true)
目标-C
[self.collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]
atScrollPosition:UICollectionViewScrollPositionTop
animated:YES];
如果您想滚动并停在不同的位置,请更改 UICollectionViewScrollPositionTop
collectionView.contentOffset.x = 0
UIView.animate(withDuration: 0.5, animations: {
self.collectionView?.contentOffset.x = 0
})
它滚动到第一项,并且也可以看到 contentInset。
[self.restaurantCollectionView setContentOffset:CGPointZero animated:YES];
scrollView.setContentOffset(CGPoint(x: 0.0, y: 0.0), animated: true)
- (void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated;
if let indexPath = self.collectionView?.indexPathForItem(at: CGPoint(x: 0, y: 0)) {
self.collectionView?.scrollToItem(at: indexPath, at: .top, animated: false)
}
let top = CGPoint(
x: collectionView.contentOffset.x,
y: collectionView.adjustedContentInset.top
)
collectionView.setContentOffset(top, animated: false)
(这会垂直滚动到顶部,但如果您愿意,您可以轻松地将其滚动到左上角。)