2017-05-24 26 views
0

現在、このアニメーションは3秒ごとに繰り返しています。私はこのアニメーションを繰り返す間に10秒の待ち時間を持ちたいと思っています。どうすればこれを達成できますか?スイフト3 - 遅延繰り返しアニメーション

override func viewDidAppear(_ animated: Bool) { 
    super.viewDidAppear(animated) 


    UIView.animate(withDuration: 7.5, delay: 20, 
        options: .repeat, 
        animations: { 
     self.imageAnimate.center.x += self.view.bounds.width * 2 
    }, 
        completion: nil 
    ) 
} 

答えて

2

Timerを使用します。

// note that I used 17.5 here because the animation itself takes 7.5 seconds 
// so that will be 7.5 seconds of animating, 10 seconds of doing nothing 
// and start animating again 
Timer.scheduledTimer(withTimeInterval: 17.5, repeats: true) { 
    UIView.animate(withDuration: 7.5, animations: { 
     self.imageAnimate.center.x += self.view.bounds.width * 2 
    }) 
} 
関連する問題