gpt4 book ai didi

iPhone自动旋转动画

转载 作者:行者123 更新时间:2023-12-03 19:05:48 24 4
gpt4 key购买 nike

是否可以关闭自动旋转动画?我希望它旋转,但我只是不希望发生动画(如即时切换)。

最佳答案

如果你确实需要,只需使用UIViewsetAnimationsEnabled即可:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[UIView setAnimationsEnabled:NO]; // disable animations temporarily
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
[UIView setAnimationsEnabled:YES]; // rotation finished, re-enable them
}

它对我有用。当然,除非您有充分的理由,否则不建议这样做。

关于iPhone自动旋转动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2946865/

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