1

使用 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 做到这一点?(我想要停止和暂停的优势

4

1 回答 1

0

UIViewPropertyAnimator没有提供重复动画的方法。您需要使用旧的UIView动画类方法。

于 2018-03-10T15:45:54.747 回答