我正在制作支持仅横向模式的iPad应用程序,但是当我在我的应用程序中添加navigationController时,即使默认情况下模拟器设置为横向模式,我的应用程序视图也是纵向的。只有在我尝试添加UINavigationController时才会发生这种情况。
任何帮助都将不胜感激,谢谢。
答案 0 :(得分:0)
您必须在应用的目标摘要中设置支持的界面方向:
答案 1 :(得分:0)
子类UINavigationController并添加以下方法:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (BOOL)shouldAutorotate {
return YES;
}