gpt4 book ai didi

ios - supportedInterfaceOrientations 不工作

转载 作者:技术小花猫 更新时间:2023-10-29 10:29:56 27 4
gpt4 key购买 nike

我想要一些 ViewControllers 风景和一些肖像,所以这就是我所做的:

我启用了横向模式:

enter image description here

接下来我将这些代码行添加到我想成为肖像的 View Controller 中:

-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationPortrait;
}
-(BOOL)shouldAutorotate
{
return NO;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationPortrait;
}

但是,当我旋转它们时,它们仍然会进入横向模式。我该如何解决这个问题?

最佳答案

Apple 为 UINavigationController 设计的方法是通过 UINavigationControllerDelegate

通常我只是更新这个委托(delegate)来执行以下操作并将它委托(delegate)给导航 Controller 堆栈中的顶部显示 Controller :

#pragma mark - UINavigationControllerDelegate

- (NSUInteger)navigationControllerSupportedInterfaceOrientations:(UINavigationController *)navigationController
{
return [navigationController.topViewController supportedInterfaceOrientations];
}

在我看来,UINavigationController 应该默认为上述行为,但这是 Apple 提供的 api :)

至于信息 plist 文件,我取消选中所有选项并在代码中处理它,因为它在过去给我带来了问题,我厌倦了处理它。

关于ios - supportedInterfaceOrientations 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21785767/

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