旋转 - 使用 willAnimateSecondHalfOfRotationFromInterfaceOrientation 减慢旋转速度

发布于 2024-11-10 12:02:05 字数 467 浏览 0 评论 0原文

大家,在使用 "willAnimateSecondHalfOfRotationFromInterfaceOrientation:" 方法时,如何实际减慢方向旋转速度?

我目前有这个:

-(void) willAnimateSecondHalfOfRotationFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation 
                                                       duration:(NSTimeInterval)duration {
    [self positionViews];
}

而且我知道当旋转确实发生时,这个“willAnimate2ndHalf...”方法会被自动调用 - 那么我实际上在哪里可以更改其 DURATION 值?

people, how do you actually slow down the orientation-rotation when using the "willAnimateSecondHalfOfRotationFromInterfaceOrientation:" method?

I currently have this:

-(void) willAnimateSecondHalfOfRotationFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation 
                                                       duration:(NSTimeInterval)duration {
    [self positionViews];
}

And I understand that this "willAnimate2ndHalf..." method gets called automatically when the rotation does indeed happen - well where do I actually get to change its DURATION value?

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

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

发布评论

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

评论(1

对你再特殊 2024-11-17 12:02:05

如果您想更改应用程序轮换的总体时间,则无法完成。 willAnimateSecondHalfOfRotationFromInterfaceOrientation 用于添加自定义代码,例如设置自定义坐标、属性等。

If you want to change the overall timing of he app's rotation, it can't be done. willAnimateSecondHalfOfRotationFromInterfaceOrientation is meant for adding custom code, like setting custom coordinates, properties, things like that.

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