在xCode 4.6上定位风景iOS 5

时间:2013-05-01 16:19:51

标签: iphone xcode ios5 ios6 orientation

我想要我的应用程序是风景。我尝试了一切,我的故事板的方向是风景,我改变了支持的方向和info.plist中的初始方向。任何人都可以帮助我吗?

在iOS 6模拟器中它是风景。

1 个答案:

答案 0 :(得分:4)

在iOS 5中,您需要在每个视图控制器中实现以下方法。

// Called only in IO 5 and earlier.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ||
            interfaceOrientation == UIInterfaceOrientationLandscapeLeft );
}

并设置UIInterfaceOrientation“初始界面方向 “到Info.plist中的UIInterfaceOrientationLandscapeRight

以横向模式布置你的观点。

Apple's developer docs