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