通用xcode 3.2.6默认为横向模式

时间:2012-03-21 06:13:08

标签: objective-c xcode3.2 ios-universal-app

如何在风景模式下使用xcode 3.2.6创建通用应用程序?我需要为每个视图分配.xib文件,我是否必须使用此代码 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation         {//对于支持的方向返回YES             return(interfaceOrientation == UIInterfaceOrientationLandscape);         }

2 个答案:

答案 0 :(得分:0)

在你的plist中,你应该将supported interface orientations更改为两个项目:

第0项Landscape (right home button)

第1项Landscape (left home button)

并在每个视图控制器中使用:

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

答案 1 :(得分:0)

我使用此示例代码并使其基于View的i只是使用此代码隐藏其导航栏 self.navigationController.navigationBarHidden = YES; 在RootViewController_Phone.h和RootViewController_Pad中 BenellingsonPost