gpt4 book ai didi

iphone - shouldAutorotateToInterfaceOrientation 有问题

转载 作者:行者123 更新时间:2023-11-28 20:29:21 25 4
gpt4 key购买 nike

我的 UIViewController 中有以下代码,我正在设备和模拟器中测试 iOS 5。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (IS_IPHONE){
return interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown;
} else {
return YES;
}
}

我设置了一个断点,它确实被调用了,但它仍然旋转到横向。这是为什么?

最佳答案

因为你告诉它这样做。 return interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown; 表示您想要自动旋转到除纵向颠倒之外的每个方向,包括横向。对于 iPad,甚至缺少此约束,因此它会自动旋转到任何方向。

(你应该对文档有了新的认识......)

关于iphone - shouldAutorotateToInterfaceOrientation 有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12846704/

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