我正在尝试将一个数字(页码)从视图控制器传递到另一个具有UICollectionView
paging enabled
选项的视图控制器。我的代码滚动到一个页面,但内容不居中,这是我的代码:
override func viewWillAppear(_ animated: Bool) {
let currentPage = 4
let indexPath = NSIndexPath(row: currentPage , section: 0) as IndexPath
self.collectionView.scrollToItem(at: indexPath, at: .right, animated: true)
}
结果:
我需要的是什么:
解决方案:
collectionView.setContentOffset(CGPoint(x: CGFloat(currentPage) * collectionView.bounds.size.width , y: 0), animated: false)
EDITED
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: 321 , height: 321)
}
答案 0 :(得分:2)
您可以尝试像这样滚动:
collectionView.setContentOffset(CGPoint(x: currentPage * itemSize, y: 0), animated: false)
其中itemSize
是集合视图中项目的大小。此外,如果每个项目之间有间距,则在计算x
修改:您需要使用itemSize.width
,以防万一您需要将currentPage转换为CGFloat
CGFloat(currentPage)