UICollectionView 设置首开索引号
UICollectionView Set First Opening index Number
我有一个 UICollectionView。此 CollectionView 打开索引号“0”,但我希望它打开索引号“2”。我该怎么做?
取决于您的 collectionViewcell 高度(如果滚动是垂直的)
你可以添加[scrollView setContentOffset:CGPointMake(0,cellHeight *2) animated:NO];
在你的viewWillApear
scrollView.setContentOffset(CGPoint(x: 0, y: cellHeight * 2), animated: false)
你可以在swift
中使用这一行
我有一个 UICollectionView。此 CollectionView 打开索引号“0”,但我希望它打开索引号“2”。我该怎么做?
取决于您的 collectionViewcell 高度(如果滚动是垂直的)
你可以添加[scrollView setContentOffset:CGPointMake(0,cellHeight *2) animated:NO];
在你的viewWillApear
scrollView.setContentOffset(CGPoint(x: 0, y: cellHeight * 2), animated: false)
你可以在swift
中使用这一行