1

我使用 aUINavigationController在我的应用程序中呈现内容。我将我的控制器保存在一个单独的字典中,并且在用户交互时,我使用正确的UIViewContoller. 每个视图控制器都实现

- (BOOL)shouldAutoRotate; 

- (NSUInteger)supportedInterfaceOrientations;

但是当我尝试将视图控制器设置为我的导航控制器时:

[self setViewControllers:[NSArray arrayWithObject:controller] animated:NO];

应用程序不会根据控制器支持的方向旋转

例如,手机是横向的,而我的视图控制器只支持纵向。如何使设备旋转为纵向?

代码:我的导航控制器子类

- (BOOL)shouldAutorotate{
    return [[self topViewController] shouldAutorotate];
}


- (NSUInteger)supportedInterfaceOrientations{
    return [[self topViewController] supportedInterfaceOrientations];
}


- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentatio{
    return [[self topViewController] preferredInterfaceOrientationForPresentation];
}

我的控制器:

- (BOOL)shouldAutorotate{
    return YES;
}


- (NSUInteger)supportedInterfaceOrientations{    
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
        return UIInterfaceOrientationMaskPortrait;
    }
    return UIInterfaceOrientationMaskAll;
}


- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
    return UIInterfaceOrientationPortrait;
}

文档指出,为了调用supportedInterfaceOrientationsshouldAutorotate必须返回 YES。

有任何想法吗??

4

0 回答 0