ios – 以模式视图保持父视图的方向呈现不同的方向

前端之家收集整理的这篇文章主要介绍了ios – 以模式视图保持父视图的方向呈现不同的方向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我正在开发一个只支持横向模式的iPad应用程序,除了在一个模态视图控制器上.我遇到的问题是,一旦我提出模态视图,并将方向改变为纵向,然后关闭视图,父视图(只应支持横向)是纵向模式,直到我旋转设备,然后再回到景观和住宿方式.我一直在努力弄清楚如何让父母看到原始的方向,但是却无法找到解决方案.

我的应用程序委托中有以下代码,仅允许在单个模态视图(GalleryPhotoViewer)上进行方向更改:

  1. - (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{
  2. NSUInteger orientations = UIInterfaceOrientationMaskAllButUpsideDown;
  3.  
  4. if(self.window.rootViewController){
  5. UIViewController *presentedViewController = [[(UINavigationController *)self.window.rootViewController viewControllers] lastObject];
  6.  
  7. //Support Portrait mode only on Photoviewer
  8. if ([[presentedViewController presentedViewController] isKindOfClass:GalleryPhotoViewController.class] ) {
  9. orientations = UIInterfaceOrientationMaskAll;
  10. }else{
  11. orientations = [presentedViewController supportedInterfaceOrientations];
  12.  
  13. }
  14. }
  15.  
  16. return orientations;
  17. }

父类(PhotosViewController)我打电话:

  1. GalleryPhotoViewController *gpView = [GalleryPhotoViewController new];
  2. [self presentViewController:gpView animated:YES completion:nil];

还有在我的父母(和其他意见)我有以下代码不允许肖像模式:

  1. - (NSUInteger)supportedInterfaceOrientations{
  2. return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
  3. }
  4.  
  5. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
  6. {
  7. if(interfaceOrientation == UIInterfaceOrientationPortrait) {
  8. return YES;
  9. } else {
  10. return NO;
  11. }
  12. }

关于我如何保持我父母观点的方向的任何想法?我正在考虑可能只是以编程方式在viewWillAppear方法中改变方向,一旦模态被关闭,然后我不知道以前的方向是什么,更不用说我还没有找到代码来做这个不管ios6.

编辑/解决方案:所以我找到一个解决方案,我最后做的是离开应用程序:supportedInterfaceOrientationsForWindow:代码,只是将UINavigation子类添加到父视图,呈现模态视图,一切按预期工作,父级保留原来而模态能够自由地改变.

在我的父母:

  1. //To make sure that this view remains in Landscape
  2. @implementation UINavigationController (Rotation_IOS6)
  3.  
  4. -(BOOL)shouldAutorotate
  5. {
  6. return [[self.viewControllers lastObject] shouldAutorotate];
  7. }
  8.  
  9. -(NSUInteger)supportedInterfaceOrientations
  10. {
  11. return [[self.viewControllers lastObject] supportedInterfaceOrientations];
  12. }
  13.  
  14. @end

感谢@matt的建议.

解决方法

我认为问题是你使用的应用程序:supportedInterfaceOrientationsForWindow :.相反,摆脱这一点,并从UINavigationController子类开始,并将根视图控制器的类作为您的导航界面.然后:

>在UINavigationController子类中,从supportedInterfaceOrientations返回UIInterfaceOrientationMaskLandscape.>在显示(模态)视图控制器中,从supportedInterfaceOrientations返回UIInterfaceOrientationMaskAll.

猜你在找的iOS相关文章