我找不到能够在不是根目录的视图控制器中更改方向的解决方案。例如,在具有根视图控制器,主视图的主视图控制器和用于翻转视图的翻转视图控制器的实用程序项目中,我可以控制方向的唯一位置来自根视图控制器。在主视图或侧视图中实现代码不会限制或启用方向。
我想做的是能够将主视图加载到横向和纵向视图中。这是可能的,或者当我在主视图和翻转视图之间切换时,是否需要以某种方式重新加载具有不同方向设置的根视图控制器?
编辑:为了澄清,我想将主视图锁定为仅横向方向,并将侧视图锁定为纵向 - 这些视图不应该旋转。 - 谢谢。
答案 0 :(得分:1)
在“主窗口”.m文件中实现以下方法。
-(BOOL)shouldAutorotateToInterfaceOrientation:UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); // or whatever orientation is needed
}
在“翻转视图”.m文件中实现以下方法。
-(BOOL)shouldAutorotateToInterfaceOrientation:UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
在您的应用程序委托或启动过程中的其他位置,您可以调用以下方法在启动时将界面方向设置为横向:
[application setStatusBarOrientation:UIInterfaceOrientationLandscapeRight]; // should match the first method above.
希望这有帮助。
干杯 -