0

嗨,我正在创建一个 iOS 应用程序,我希望它一直在纵向上运行,即使我向左/向右转动它,我希望它在这里保持不变,这里有一些与纵向相关的所有设置的图像。

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

所以这就是我设置的所有东西所以我的问题是我如何保持纵向,即使我在它运行时倾斜它时它会以纵向打开但说如果我向左转动它会旋转到横向。

在此先感谢您,我将期待您的到来。

4

2 回答 2

1
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{

    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

使用此方法仅支持纵向模式

于 2012-07-24T12:15:08.253 回答
1

对于您从此函数支持的任何方向返回 YES。

 (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
   return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
于 2012-07-24T12:15:28.953 回答