在加载集合视图之前,用户设置集合视图数组中的图像数。所有细胞都不适合屏幕。我有30个单元格,屏幕上只有6个。
问题:如何在加载UICollectionView时自动滚动到具有所需图像的单元格?
答案 0 :(得分:158)
新编辑答案:
在viewDidLayoutSubviews
<强> SWIFT 强>
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
let indexPath = IndexPath(item: 12, section: 0)
self.collectionView.scrollToItem(at: indexPath, at: [.centeredVertically, .centeredHorizontally], animated: true)
}
通常情况下,.centerVertically
就是
<强> ObjC 强>
-(void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:12 inSection:0];
[self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredVertically | UICollectionViewScrollPositionCenteredHorizontally animated:NO];
}
适用于旧iOS的旧答案
在viewWillAppear
:
[self.view layoutIfNeeded];
[self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredVertically animated:NO];
答案 1 :(得分:76)
我发现在viewWillAppear
中滚动可能无法可靠地工作,因为集合视图还没有完成它的布局;你可以滚动到错误的项目。
我还发现在viewDidAppear
中滚动会导致未滚动视图的瞬间闪烁可见。
并且,如果您每次都通过viewDidLayoutSubviews
滚动,则用户将无法手动滚动,因为某些集合布局会在每次滚动时导致子视图布局。
这是我发现的可靠作品:
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
// If we haven't done the initial scroll, do it once.
if (!self.initialScrollDone) {
self.initialScrollDone = YES;
[self.collectionView scrollToItemAtIndexPath:self.myInitialIndexPath
atScrollPosition:UICollectionViewScrollPositionRight animated:NO];
}
}
答案 2 :(得分:13)
我完全同意上述答案。唯一的问题是,对我来说,解决方案是在viewDidAppear中设置代码
viewDidAppear
{
[self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredVertically animated:YES];
}
当我使用viewWillAppear时,滚动不起作用。
答案 3 :(得分:11)
这似乎对我有用,它与另一个答案类似,但有一些明显的差异:
- (void)viewDidLayoutSubviews
{
[self.collectionView layoutIfNeeded];
NSArray *visibleItems = [self.collectionView indexPathsForVisibleItems];
NSIndexPath *currentItem = [visibleItems objectAtIndex:0];
NSIndexPath *nextItem = [NSIndexPath indexPathForItem:someInt inSection:currentItem.section];
[self.collectionView scrollToItemAtIndexPath:nextItem atScrollPosition:UICollectionViewScrollPositionNone animated:YES];
}
答案 4 :(得分:11)
<强>夫特:强>
your_CollectionView.scrollToItemAtIndexPath(indexPath, atScrollPosition: UICollectionViewScrollPosition.CenteredHorizontally, animated: true)
Swift 3
let indexPath = IndexPath(row: itemIndex, section: sectionIndex)
collectionView.scrollToItem(at: indexPath, at: UICollectionViewScrollPosition.right, animated: true)
滚动位置
UICollectionViewScrollPosition.CenteredHorizontally / UICollectionViewScrollPosition.CenteredVertically
答案 5 :(得分:8)
您可以使用GCD将滚动调度到viewDidLoad中的主运行循环的下一次迭代,以实现此行为。滚动将在集合视图显示在屏幕上之前执行,因此不会闪烁。
- (void)viewDidLoad {
dispatch_async (dispatch_get_main_queue (), ^{
NSIndexPath *indexPath = YOUR_DESIRED_INDEXPATH;
[self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:NO];
});
}
答案 6 :(得分:4)
我建议在collectionView: willDisplay:
中进行。然后你可以确定集合视图委托提供了一些东西。
这是我的例子:
func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
/// this is done to set the index on start to 1 to have at index 0 the last image to have a infinity loop
if !didScrollToSecondIndex {
self.scrollToItem(at: IndexPath(row: 1, section: 0), at: .left, animated: false)
didScrollToSecondIndex = true
}
}
答案 7 :(得分:1)
这里的所有答案 - 黑客。我发现在relaodData之后滚动集合视图的更好方法:
子类集合视图布局你使用的布局,覆盖方法prepareLayout,超级调用后设置你需要的东西。
例如:https://stackoverflow.com/a/34192787/1400119
答案 8 :(得分:1)
作为上述替代方案。 数据加载后调用:
快速
collectionView.reloadData()
collectionView.layoutIfNeeded()
collectionView.selectItem(at: indexPath, animated: true, scrollPosition: .right)