在一个模态视图控制器上强制iOS方向为横向

时间:2015-03-11 13:15:11

标签: ios objective-c iphone modalviewcontroller uiinterfaceorientation

我有一个支持iPad和iPhone的通用应用程序。在iPad上我支持所有方向,在iPhone上只支持Portrait。

我想要一个视图控制器(以模态显示),在iPhone上运行时,以设备所在的任何方向显示。我看过很多教程和SO帖子建议使用-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window应用委托方法,这似乎在旋转模态视图控制器方面绝对正常。但是,当我在横向中关闭模态视图时,整个应用程序仍然是风景。

理想情况下,只要模态视图被解除,应用程序就应该回到纵向模式。

调查后,似乎在解除视图控制器后没有调用-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window回调,我无法弄清楚原因。

我玩过示例应用here,并且在解除视图控制器时会触发回调,我无法弄清楚原因。我能看到的唯一区别是我的视图层次结构要复杂得多,并且我显示的是导航控制器而不是显式的视图控制器,但我不知道这应该如何影响回调。

有关寻找解决方案的想法吗?

由于

2 个答案:

答案 0 :(得分:4)

您可以尝试使用此方法(在应用商店版本中工作):

[[UIDevice currentDevice] performSelector:@selector(setOrientation:)
                               withObject:(__bridge id)((void*)UIInterfaceOrientationPortrait)];

答案 1 :(得分:0)

在appdelegate:

  - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window 
{
// Get topmost/visible view controller
    UIViewController *currentViewController = [self topViewController];

//Hire check your needed device ore other things you need
    if ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone )
    { 
     //device is iphone
         if ([currentViewController respondsToSelector:@selector(canRotate)]) 
         {
            // Unlock landscape view orientations for this view controller
            return UIInterfaceOrientationMaskAll;
         }
         return UIInterfaceOrientationMaskPortrait;
    }  
    else
    //device Ipad
    return UIInterfaceOrientationMaskAll;  
}

}
- (UIViewController*)topViewController {
return [self topViewControllerWithRootViewController:[UIApplication sharedApplication].keyWindow.rootViewController];
}

- (UIViewController*)topViewControllerWithRootViewController:(UIViewController*)rootViewController {
if ([rootViewController isKindOfClass:[UITabBarController class]]) {
    UITabBarController* tabBarController = (UITabBarController*)rootViewController;
    return [self topViewControllerWithRootViewController:tabBarController.selectedViewController];
} else if ([rootViewController isKindOfClass:[UINavigationController class]]) {
    UINavigationController* navigationController = (UINavigationController*)rootViewController;
    return [self topViewControllerWithRootViewController:navigationController.visibleViewController];
} else if (rootViewController.presentedViewController) {
    UIViewController* presentedViewController = rootViewController.presentedViewController;
    return [self topViewControllerWithRootViewController:presentedViewController];
} else {
    return rootViewController;
}
}

在所需的旋转视图中确保实现

  - (void)canRotate { }

这将允许您仅旋转iPhone设备所需的视图。

我在旧的stackoverflow帖子的帮助下得到了这段代码,但我现在找不到它的链接