我有一个 IBOutlet 按钮集合,我试图按顺序在屏幕上显示。他们都从屏幕开始很好,但是当他们动画时,我希望每个按钮在前一个按钮之后 0.05 秒出现在屏幕上。我不知道如何增加 UIView.animateWithDuration 中的延迟。使用下面的代码,它们都同时在屏幕上制作动画。
//outlet collection
@IBOutlet var options: [UIButton]!
let increment = 0.25
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
for button in options {
button.center.y += view.bounds.height
}
}
override func viewDidLoad() {
super.viewDidLoad()
for button in options {
UIView.animateWithDuration(1.0, delay: increment, usingSpringWithDamping: 0.7, initialSpringVelocity: 0.0, options: nil, animations: {
button.center.y -= self.view.bounds.height
self.increment + 0.05
}, completion: nil)
}
}