UIModalTransitionStyleFlip水平动画持续时间?

发布于 2024-11-16 06:35:17 字数 182 浏览 7 评论 0原文

-[UIViewController PresentModalViewController:animated:] 相关的 UIModalTransitionStyleFlipHorizo​​ntal(NSTimeInterval)duration 默认值是多少?

What is the default value of (NSTimeInterval)duration for UIModalTransitionStyleFlipHorizontal, which is related to -[UIViewController presentModalViewController:animated:]?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゞ花落谁相伴 2024-11-23 06:35:17

如果您询问在未显式设置动画时持续时间的默认值是多少,框架标题中提供了答案:

 * 如果动画的“duration”属性为零或负数
 * 给出默认持续时间,或者是
 * `animationDuration' 事务属性或 0.25 秒。

因此,由于您无法在方法调用上设置值,因此执行动画应该需要四分之一秒。

If you are asking what the default value of the duration is on an animation when you do not explicitly set it, the answer is provided in the framework headers:

 * 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.

So, since you can't set the value on the method call, it should take a quarter second to execute the animation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文