gpt4 book ai didi

iphone - 当方向改变时更改或禁用 iPhone 旋转动画

转载 作者:太空狗 更新时间:2023-10-30 03:30:26 25 4
gpt4 key购买 nike

当屏幕方向从横向变为纵向或反之时,如何更改或禁用旋转动画?

最佳答案

是的,可以在不破坏一切的情况下禁用动画。

以下代码将禁用“黑盒”旋转动画,而不会干扰其他动画或方向代码:

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
[UIView setAnimationsEnabled:YES];
}


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
[UIView setAnimationsEnabled:NO];
/* Your original orientation booleans*/
}

将它放在您的 UIViewController 中,一切都应该很好。同样的方法可以应用于 iOS 中任何不需要的动画。

祝你的项目好运。

关于iphone - 当方向改变时更改或禁用 iPhone 旋转动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2737866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com