gpt4 book ai didi

ios - 在 iOS 7 的 Landspace 中锁定一个 UIview

转载 作者:行者123 更新时间:2023-11-29 02:58:32 26 4
gpt4 key购买 nike

我正在尝试将我的应用程序中的一个 View 锁定到 LandscapeRight。我使用的代码如下所示。

// To landscape

- (NSUInteger) supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscapeRight;
}

- (BOOL)shouldAutorotate {
return NO;
}

- (UIInterfaceOrientation) preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeRight;
}

然而,它仍然在旋转。

我错过了什么吗?

最佳答案

我在这里回答这个问题:

Disabling rotation for current screen?

你应该使用:

- (BOOL)shouldAutorotate
{
return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
//Choose your available orientation, you can also support more tipe using the symbol |
//e.g. return (UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight)
return (UIInterfaceOrientationMaskLandscapeRight);
}

如果您返回 NO,则您的 viewController 不会进入 supportedInterfaceOrientations 方法。

关于ios - 在 iOS 7 的 Landspace 中锁定一个 UIview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23574373/

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