我使用UIScrollView以编程方式为某些内容制作动画。
但是,我需要减慢视图的滚动速度。
这是我用于滚动的代码:
self.scrollView.setContentOffset(CGPoint(x: 0, y: self.view.frame.height), animated: true)
我尝试添加scrollView.decelerationRate = UIScrollViewDecelerationRateFast
,但它似乎无法正常工作。
答案 0 :(得分:1)
请尝试以下代码:
UIView.animate(withDuration: 1.5) {
self.scrollView.contentOffset = CGPoint(x: 0, y: self.view.frame.height)
}