在启用分页的情况下滚动到UICollectionView中的页面

时间:2017-02-21 10:19:59

标签: ios iphone swift xcode uicollectionview

我正在尝试将一个数字(页码)从视图控制器传递到另一个具有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)
}

结果:

enter image description here

我需要的是什么:

enter image description here

解决方案:

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)

    }

1 个答案:

答案 0 :(得分:2)

您可以尝试像这样滚动:

collectionView.setContentOffset(CGPoint(x:  currentPage * itemSize, y: 0), animated: false)

其中itemSize是集合视图中项目的大小。此外,如果每个项目之间有间距,则在计算x

时也应添加该项

修改:您需要使用itemSize.width,以防万一您需要将currentPage转换为CGFloat CGFloat(currentPage)