使用 UIView.animate: 方法,我们可以配置选项并使其成为 [.autoreverse,.repeat]。这是一个简单的动画:
@IBOutlet weak var v1: UIView!
UIView.animate(withDuration: 3, delay: 0, options: [.autoreverse,.repeat], animations: {
self.v1.frame = self.v1.frame.offsetBy(dx: 100, dy: 0)
}, completion: nil)
这段代码将动画 v1 反复向前和向后移动,我怎么能用 UIViewPropertyAnimator 做到这一点?(我想要停止和暂停的优势)