UIModalTransitionStyleFlipHorizo​​ntal动画持续时间?

时间:2011-06-20 23:04:55

标签: ios animation uikit duration uimodaltransitionstyle

(NSTimeInterval)duration UIModalTransitionStyleFlipHorizontal的默认值是什么,与-[UIViewController presentModalViewController:animated:]有关?

1 个答案:

答案 0 :(得分:1)

如果您在未明确设置时询问动画的持续时间的默认值是什么,则在框架标题中提供答案:

 * If the `duration' property of the animation is zero or negative it
 * is given the default duration, either the value of the
 * `animationDuration' transaction property or .25 seconds otherwise.

所以,既然你不能在方法调用上设置值,那么执行动画应该花费四分之一秒。

相关问题