gpt4 book ai didi

objective-c - 关闭“使用自动版式”会导致应用仅以纵向模式运行

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

我希望我的应用程序与iOS 5兼容,因此我不得不在XIB文件中禁用“使用自动布局”。整个应用程序旨在以横向模式运行。在禁用自动布局后(无论是在iOS 5还是iOS 6中)启动应用程序时,该应用程序始终以纵向模式启动,并且拒绝旋转为横向模式。

在Info.plist中,Supported Interface Orientations (iPad)仅设置为横向。我究竟做错了什么?这仅在禁用自动布局后发生。

最佳答案

通过使用Ismael的答案,我能够解决iOS 6中的问题。

- (NSUInteger)supportedInterfaceOrientations {

return UIInterfaceOrientationMaskLandscape;

}

我可以使用下面的代码在iOS 5中修复它。
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {

return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);

}

关于objective-c - 关闭“使用自动版式”会导致应用仅以纵向模式运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14073057/

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