gpt4 book ai didi

ios - Iphone 肖像模式切换回风景模式无法自动工作

转载 作者:行者123 更新时间:2023-11-28 22:18:32 26 4
gpt4 key购买 nike

enter image description here我的应用程序以肖像模式正确启动并且运行良好,但在我的应用程序中,当我将应用程序 View 从仅支持横向模式切换到支持两种方向的某些 View 并将设备旋转到肖像和点击后退按钮,横向 View 不会自动旋转

我使用下面的代码来设置方向

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}


- (BOOL)shouldAutorotate
{
return YES;
}




- (NSInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeLeft;
}

谢谢

最佳答案

编辑这些行

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}

作为

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (toInterfaceOrientation == UIInterfaceOrientationMaskLandscapeLeft) {
return YES;
}
else {
return NO;
}
}

关于ios - Iphone 肖像模式切换回风景模式无法自动工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20999023/

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