iOS 10 的 UIViewPropertyAnimator

2016-12-27  本文已影响56人  42vio
let AView = UIView(frame: CGRect(x: 50, y: 200, width: 50, height: 30))
AView.backgroundColor = UIColor.red
self.view.addSubview(AView)
let finalPoint = CGPoint(x: 250, y: 200)
        
let animator = UIViewPropertyAnimator(duration: 1.0, curve: .easeOut) {
    AView.center = finalPoint
}
animator.startAnimation()
// 阻尼系数值 0~1
let animator = UIViewPropertyAnimator(duration: 1.0, dampingRatio: 0.4) { 
    AView.center = finalPoint
    AView.alpha = 0.3
}
// 添加动画
animator.addAnimations {
    AView.alpha = 0.0
}
// 你还可以向运行中的动画添加动画块,该动画块将立即使用剩余时间作为新动画的持续时间来执行。
        
 // 当动画完成时会被触发的
animator.addCompletion { (position) in
    // code...
}
animator.startAnimation(afterDelay:3) // 延时
上一篇下一篇

猜你喜欢

热点阅读