我的UIScrollView
包含UIImageView
数组。 UIScrollView
已启用分页。我想要的是我可以设置初始索引,因此它将从索引3而不是索引0开始。这可能吗?
答案 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)
}