我们可以忽略屏幕方向还是我们必须处理它?

时间:2011-06-23 11:35:49

标签: iphone

虽然我知道如何在 IPhone 应用程序中处理屏幕方向。有可能我们可以忽略它吗?通过一些代码或者可以将其设置在某个地方。例如,在 Android 中,我们可以ignore screen orientation进行一些更改。 IPhone 中也有某种方法吗?

感谢
尼蒂什

2 个答案:

答案 0 :(得分:2)

如果你没有实现或处理所有方向,那么它应该是oke:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

您的应用仅支持纵向模式。

答案 1 :(得分:1)

您可以在interfaceOrientation == UIInterfaceOrientationPortrait

上返回shouldAutoRotateToInterfaceOrientation来停止屏幕方向

编辑技术上正确。