3

我目前正在动画块中为我的约束之一设置动画,但是我希望自定义动画类型 - 进一步由预设 UIVIewAnimationOptions 给出:

    UIView.animateWithDuration(2.0, delay: 0.3, options: UIViewAnimationOptions.CurveEaseInOut, animations: { () -> Void in

        self.heightTransition.constant = self.view.bounds.height - 52
        self.view.layoutIfNeeded()

        }, completion: { (complete) -> Void in
    })

我研究了使用CAMediaTimingFunction的潜力,如此处所示 ( http://cubic-bezier.com/#.44,.94,.79,-0.01 ),您可以在其中传入值来更改动画风格。

那么我的问题是,如何在动画 UIView 约束时应用CAMediaTimingFunction的使用?

4

0 回答 0