我追求的效果:只有在滚动时才可见的图像之间的间距(如照片应用程序)。
许多旧的 obj-c 答案建议将滚动视图的边界扩展到屏幕外以使其页面更远,并使此屏幕外空间成为图像之间的间隙。
pagingEnabled 的文档指出:
如果此属性的值为 YES,则当用户滚动时,滚动视图会在滚动视图边界的倍数处停止。
因此,在尝试更改倍数时,我扩展了滚动视图的宽度,并启用了左分页。然而,没有答案我实现页面超出了差距 - 他们总是把它留在视野中:
那么如果滚动宽度更长,为什么它不分页适当的距离呢?
let gapMargin = CGFloat(20)
scrollView.frame = CGRect(x: 0, y: 0, width: view.frame.width + gapMargin, height: view.frame.height)
let exdScrollWidth = scrollView.frame.width
//1
let imageView1 = UIImageView()
imageView1.backgroundColor = UIColor.green
imageView1.frame = CGRect(x: 0, y: 0, width: exdScrollWidth - gapMargin, height: scrollView.bounds.size.height)
//2
let imageView2 = UIImageView()
imageView2.backgroundColor = UIColor.yellow
imageView2.frame = CGRect(x: exdScrollWidth, y: 0, width: exdScrollWidth - gapMargin, height: scrollView.bounds.size.height)
//3
let imageView3 = UIImageView()
imageView3.backgroundColor = UIColor.red
imageView3.frame = CGRect(x: exdScrollWidth * 2, y: 0, width: exdScrollWidth - gapMargin, height: scrollView.bounds.size.height)
scrollView.contentSize.width = exdScrollWidth * 3
scrollView.addSubview(imageView1)
scrollView.addSubview(imageView2)
scrollView.addSubview(imageView3)