gpt4 book ai didi

xcode - 应用程序仅在 iOS 6 中旋转,而不在 iOS 5 中旋转

转载 作者:行者123 更新时间:2023-12-04 22:22:36 26 4
gpt4 key购买 nike

我制作了一个针对 iOS 5 和 iOS 6 的应用程序,出于某种原因,它仅在使用 iOS 6 的设备(无论是 iPhone 还是 iPad)上使用时才会旋转,而不会在使用 iOS 5 的设备上旋转。我的应用程序是通用的。请帮我解决这个问题!谢谢

最佳答案

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return ((toInterfaceOrientation == UIInterfaceOrientationPortrait) || (toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown));
}

- (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);
}

在所有 uiviewcontroller 子类中覆盖这两个方法......这适用于 ios 6 及更早版本

关于xcode - 应用程序仅在 iOS 6 中旋转,而不在 iOS 5 中旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13100347/

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