iPhone - 即使应用仅支持纵向方向,状态栏也会旋转

时间:2011-06-27 09:03:37

标签: iphone orientation statusbar landscape-portrait

我正在开发一个仅支持纵向方向的iPhone应用程序。 在我的设备上一切正常,但在我的测试仪上,状态栏自动旋转到横向。视图的其余部分仍处于纵向模式。

我的测试仪的设备规格如下: - iPhone 4 - Ver 4.2.8

我无法在设备上重现此错误(iPhone 4,4.3.3)。

谢谢!

1 个答案:

答案 0 :(得分:2)

在所有viewController.m文件中添加以下函数。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations.
    return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown); // support only portrait
}

在info.plist文件中添加以下密钥

初始界面方向

并将其值设置为“纵向(底部主页按钮)”

干杯。