gpt4 book ai didi

ios - Objective C ViewController 意外旋转到 Landscape

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

我的 View 有一些问题,我只想允许纵向 View 。这是我的代码:

-(BOOL)shouldAutorotate
{
return NO;
}

-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}

-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}

这很好用,直到在这个 View 上呈现另一个 View 。当下一个 View Controller 被关闭时,第一个 View Controller 似乎忽略了 shouldAutorotate 并且它意外地进入横向和纵向。我该如何解决这个问题?

编辑:请注意,我正在使用其他确实使用横向的 View Controller 。

最佳答案

如果您使用的是最新版本的 XCode。只需转到 Project Target -> Deployment Info-> 设备方向,只需选中纵向并取消选中其余部分:)

关于ios - Objective C ViewController 意外旋转到 Landscape,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22974854/

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