2

我的应用程序包含两个表视图控制器。在第一个中,我希望视图能够左右旋转(除了纵向模式),但是在第二个表视图控制器中(我在从第一个表中点击一个单元格后导航到)我想要它只能在纵向模式下查看。我试过这段代码,但它没有用,它一直在旋转。

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;
}

- (BOOL) shouldAutorotate {
    return NO;
}

注意:我确实从项目目标的“摘要”选项卡中启用了左/右/纵向。任何修复?

4

2 回答 2

2

为 UINavigationController 创建一个类别,其中包括以下方法:

(适用于 iOS 6 和 iOS 5)

- (BOOL)shouldAutorotate
    {
        return self.topViewController.shouldAutorotate;
    }

    - (NSUInteger)supportedInterfaceOrientations
    {
        return self.topViewController.supportedInterfaceOrientations;
    }

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
        return [self.topViewController shouldAutorotateToInterfaceOrientation:toInterfaceOrientation];
    }

然后在你的控制器中实现这些方法

第一的:

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    if (RUNNING_IPAD) {
        return UIInterfaceOrientationMaskAll;
    }
    else {
        return UIInterfaceOrientationMaskAllButUpsideDown;
    };
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    if (RUNNING_IPAD) {
        return YES;
    }
    else {
        return toInterfaceOrientation != UIInterfaceOrientationMaskPortraitUpsideDown;
    }
}

第二:

- (BOOL)shouldAutorotate {
    return NO;
}

- (NSUInteger)supportedInterfaceOrientations {
       return UIInterfaceOrientationMaskPortrait;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
        return NO;
}

项目的旋转设置应如下所示:

设置

于 2013-04-05T13:44:58.493 回答
0

实际上我找到了解决我的问题的方法:

-(BOOL)shouldAutorotate{
    return YES;
}

-(NSInteger)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskPortrait;
}

即使您在项目 Traget 的“摘要”选项卡中切换了左/右方向,这也会将视图限制为纵向。

于 2013-04-05T14:15:49.413 回答