仅限风景的应用程序仍然在iOS7中自动镜像到肖像

时间:2013-11-05 09:15:58

标签: ios iphone ipad landscape

更新到iOS7后,我的应用程序显示自动旋转。 我希望它是一个仅限风景的应用程序,因此,我按如下方式设置所有内容: 在iOS6中很好。

enter image description here

在.plist文件中:

enter image description here

在我的MainWindow控制器

-(BOOL)shouldAutorotate
{
    return NO;
}

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscape;
}

AppDelegate.m将其称为:

 MainViewController* mainViewController = [[MainViewController alloc] init];
    // Create the navigation controller
    UINavigationController *navController = [[UINavigationController alloc]
                                             initWithRootViewController:mainViewController];


    [navController setNavigationBarHidden:NO];
    [[self window] setRootViewController:navController];

但是当我旋转设备时,应用程序仍然以纵向模式自动旋转。 在iOS 6中,我没有这样的行为。

1 个答案:

答案 0 :(得分:3)

试试这个,

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationLandscapeLeft;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscape;
}
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
    return (UIInterfaceOrientationMaskLandscape);
}