iPad横向模式仅适用于UINavigationController

时间:2013-04-18 11:01:44

标签: ios ios6 ios-simulator ipad

我正在制作支持仅横向模式的iPad应用程序,但是当我在我的应用程序中添加navigationController时,即使默认情况下模拟器设置为横向模式,我的应用程序视图也是纵向的。只有在我尝试添加UINavigationController时才会发生这种情况。

任何帮助都将不胜感激,谢谢。

2 个答案:

答案 0 :(得分:0)

您必须在应用的目标摘要中设置支持的界面方向:

enter image description here

答案 1 :(得分:0)

子类UINavigationController并添加以下方法:

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}
- (BOOL)shouldAutorotate {
    return YES;
}