美文网首页程序员iOS-开发
4步设置横竖屏自由切换(指定界面横屏,带导航,根视图tabbar

4步设置横竖屏自由切换(指定界面横屏,带导航,根视图tabbar

作者: atme | 来源:发表于2018-06-03 21:51 被阅读313次

    代码下载 https://github.com/aiteme/InterfaceOrientationMaskDemo/tree/InterfaceOrientationProject

    场景描述:

    1.指定界面横屏显示

    2.带导航栏横屏旋转的时,状态栏消失

    3.当前界面横屏显示后,其他界面不能受到干扰

    ......

    解决方案:

    以上各种奇葩非奇葩问题,解决办法咱们也不要太过繁琐,只要4步,4步解决你所有问题,比找到女票还激动

    **第一步:设置app允许旋转,如下图:**
    
    image
    **第二步:控制整个app所有的界面横竖屏显示:**
    
    在appdelegate.m里面设置,ruturn返回值,控制app旋转方向
    
    - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    
        return UIInterfaceOrientationMaskLandscapeLeft;(APP所有界面左横屏显示,不能旋转)
    
        return UIInterfaceOrientationMaskLandscapeRight;(APP所有界面右横屏显示,不能旋转)
    
        return UIInterfaceOrientationMaskAll;(APP支持所有旋转)
    
        return UIInterfaceOrientationMaskPortrait;(APP竖屏展示,不能旋转)
    
    }
    
    **第三步:base界面旋转开关控制,指定界面重新开关控制
    
    在baseview设置:
    
    - (BOOL)shouldAutorotate {
    
        return NO;
    
    }//是否支持屏幕旋转
    
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    
        return UIInterfaceOrientationMaskPortrait;
    
    }//支持的方向
    
    - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    
        return UIInterfaceOrientationPortrait;
    
    }//支持的方向
    
    其他控制器在需要旋转的控制器设置
    
    - (BOOL)prefersStatusBarHidden {
    
        return NO;
    
    }//状态栏设置不隐藏
    
    - (BOOL)shouldAutorotate
    {
        return YES;
    
    }//是否支持旋转
    
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations
    
    {
        return UIInterfaceOrientationMaskAll;
    }//旋转方向
    
    **第四步:设置状态栏,修改app支持的旋转方向**
    
    4.1:在指定选择的控制器中,修改*[[UIApplication sharedApplication].delegate application:[UIApplication sharedApplication] *supportedInterfaceOrientationsForWindow:self.view.window];方法中支持的旋转方向
    
    4.2:如果当前控制进入就要横屏展示的话,设置[[UIApplication   sharedApplication].delegate application:[UIApplication sharedApplication] supportedInterfaceOrientationsForWindow:self.view.window]支持的旋转方向并修改状态栏方向
    
    orientation:为状态栏的方向
    - (void)interfaceOrientation:(UIInterfaceOrientation)orientation
    {
    
        // _webView.frame = CGRectMake(0, 0, kScreenHeight,kScreenWidth-(self.isNaviBar?64:0));
    
        if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
    
        SEL selector            = NSSelectorFromString(@"setOrientation:");
    
        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
    
        [invocation setSelector:selector];
    
        [invocation setTarget:[UIDevice currentDevice]];
    
        int val                  = orientation;
    
        // 从2开始是因为0 1 两个参数已经被selector和target占用
    
        [invocation setArgument:&val atIndex:2];
    
        [invocation invoke];
    
        }
    
     }
    
    4.3:当横屏界面将来消失时,在调用[[UIApplication  sharedApplication].delegate application:[UIApplication sharedApplication] supportedInterfaceOrientationsForWindow:self.view.window]设  置下旋转方向
    
    操作完,那么横竖屏想怎么玩就怎么玩
    
    文章的最后上张旋转图,没有图说个锤子!
    
    **注意**:系统选择的开关打开,不打开的话强制横屏也是可以的,但是自动旋转就不行了,得自己监听旋转的通知了,然后设置app支持的旋转方向并修改状态栏方向即可
    
    image image

    相关文章

      网友评论

        本文标题:4步设置横竖屏自由切换(指定界面横屏,带导航,根视图tabbar

        本文链接:https://www.haomeiwen.com/subject/qwsssftx.html