gpt4 book ai didi

iphone - iOS 6 自动旋转的问题

转载 作者:行者123 更新时间:2023-12-01 17:43:29 25 4
gpt4 key购买 nike

我有一个 View Controller ,我希望它只以纵向显示,所以我在 iOS 6 中做了以下操作:

-(BOOL)shouldAutorotate
{
return NO;
}

- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}

但是,当我旋转设备时,它仍然会变成横向。知道在哪里可以检查这个吗?我设置了一个断点,它到达了 supportedInterfaceOrientations ,但它仍然旋转

最佳答案

你有导航 Controller 吗? iOS6 决定什么可以自动旋转的方式已经改变。它正确地为您的 View Controller 询问supportedInterfaceOrientations,但它可能向您的导航堆栈层次结构中的另一个元素询问“shouldAutorotate”并接受该答案。如果您的 navigationController/tabviewController 对此问题返回"is",则它不会咨询您的 View Controller 。

关于iphone - iOS 6 自动旋转的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12826062/

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