gpt4 book ai didi

ios - 如何禁用 ios 7 中的界面方向更改

转载 作者:行者123 更新时间:2023-11-29 12:58:13 27 4
gpt4 key购买 nike

我的 .plist 文件中启用了界面方向支持。但是我只需要在一个 viewController 中启用横向。在其他 viewControllers 中,我无法禁用横向模式。请告诉我如何在除一个 View Controller 之外的所有 View Controller 中禁用横向模式。

最佳答案

你可以使用

- (BOOL) shouldAutorotate
{
return YES;
}

-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskPortrait;
//return here which orientation you are going to support

}

关于ios - 如何禁用 ios 7 中的界面方向更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20472153/

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