iOs 6从UIViewController以横向方式返回到肖像

时间:2013-03-13 16:21:50

标签: ios6 orientation uiinterfaceorientation

所以我有一个带导航控制器的应用程序,最后一个viewcontoller可以旋转到任何方向。其他人必须只是肖像画。因此,当我们在横向上旋转最后一个viewController然后按导航控制器上的后退按钮时,我会遇到麻烦。我们转到上一个,看到布局被打破了。  我认为唯一的方法是使用这样的东西:

[[UIDevice currentDevice] performSelector:NSSelectorFromString(@"setOrientation:") withObject:(id)UIInterfaceOrientationPortrait] 

(我知道这是一个黑客攻击,最好避免这样的事情) 但无论我在哪里尝试 - 它都会导致我出现不同的布局问题。通常的方法如:

- (NSUInteger)supportedInterfaceOrientations
- (BOOL)shouldAutorotate
手柄方向的

等在这种情况下是无用的。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我为那些必须是肖像的viewControllers的父母解决了这个问题:

-(NSUInteger)supportedInterfaceOrientations{
 return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
 return UIInterfaceOrientationPortrait;
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
 [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait animated:YES];
}

用于旋转viewController:

-(NSUInteger)supportedInterfaceOrientations{
 return UIInterfaceOrientationMaskAll;
}

对于导航控制器:

- (BOOL)shouldAutorotate {

BOOL result = self.topViewController.shouldAutorotate;

 return result;
}

- (NSUInteger)supportedInterfaceOrientations {

NSUInteger result = self.topViewController.supportedInterfaceOrientations;

return result;
}

并将其添加到AppDelegate:

- (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {

UINavigationController *navigationController = (UINavigationController *)self.window.rootViewController;
if ([navigationController.topViewController isKindOfClass:[RotationViewController  class]])
    return UIInterfaceOrientationMaskAll;
else
    return UIInterfaceOrientationMaskPortrait;
}