如何初始化scrollView分页的起始索引?

时间:2016-12-22 15:10:20

标签: swift uiscrollview

我的UIScrollView包含UIImageView数组。 UIScrollView已启用分页。我想要的是我可以设置初始索引,因此它将从索引3而不是索引0开始。这可能吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

func scrollToImageAt(index: Int) {
    let imageView = imageViews[index]
    let yOffset = imageView.frame.origin.y
    scrollView.setContentOffset(CGPoint(x: 0, y: yOffset), animated: true)
}