iOS之横屏那些事

github Demo 链接

0. 横屏应用领域

  1. 游戏
  2. 视频播放、直播
  3. 展示内容较多且有较多细节的,VR、全景、摄影教学、股市数据等App

1. UI适配

iOS6开始禁止使用setOrientation:私有方法,开发人员仅能通过project->Device Orientation设置对应方向,然而对于大量采用frame形式组织页面布局的App来说,适配横屏简直就是灾难。
那么原先仅支持竖屏的App如何快速适配横屏呢?

  1. 根据需求,Device Orientation中新增设备支持方向
  2. 保持原先App结构,BasicViewController 默认支持Portrait,业务VC自行适配横屏逻辑
  3. 测试LandscapeViewController,dismiss or pop or push 各种形式,对于其他页面的影响,对StatusBar的影响
  4. 测试横屏模式冷、热启动App是否导致页面布局错乱,比如,横屏H5页面唤起App,plus横屏模式唤起App

如果全新的一个项目想要支持横竖屏&Universal App 需要符合autolayout,也可以用Masonry

2. 方向类型

1. 方向类型:

  • Device Orientation
  • Interface Orientation
typedef NS_ENUM(NSInteger, UIInterfaceOrientation) {
    UIInterfaceOrientationUnknown            = UIDeviceOrientationUnknown,
    UIInterfaceOrientationPortrait           = UIDeviceOrientationPortrait,
    UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown,
    UIInterfaceOrientationLandscapeLeft      = UIDeviceOrientationLandscapeRight,
    UIInterfaceOrientationLandscapeRight     = UIDeviceOrientationLandscapeLeft
} __TVOS_PROHIBITED;

注意InterfaceLandscape与DeviceLandscape取反

2. 方向类型获取:

Orientation获取方式、区别

3. 如何支持横屏

1. 方法一:

transition, 通过选择View的形式达到横屏效果,判断依据:键盘,上拉快捷方式方向不一致。适合简单不需要键盘输入交互,比如简单的视频播放。

 CGAffineTransform transform = CGAffineTransformMakeRotation(-M_PI_2);
 CGFloat scale = 0.5;
 transform = CGAffineTransformScale(transform, scale, scale);
 self.xxView.transform = transform;
 
 [UIView animateWithDuration:[[UIApplication sharedApplication] statusBarOrientationAnimationDuration] animations:^{
            self.xxView.transform = CGAffineTransformIdentity;
            self.xxView.frame = fullScreenVC.view.bounds;
        }completion:^(BOOL finished) {
        }];

2. 方法二:

通过私有API形式调用

 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];

这种形式可行,但是存在被拒审的风险,被否决掉!

3. 方法三:

如果是 TabBarController & NavigationController结构的,为了支持页面的横屏需要做如下改造,工程设置支持对应的方向,默认ViewController只支持竖屏模式,只需要presentViewController即可,缺点在于无法适用之前push的导航容器,如有需要可以自行创建:

  • TabBarController:

    1. supportedInterfaceOrientations 需要向上抛到NavigationController的supportedInterfaceOrientations
    2. shouldAutorotate也是同理
  • NavigationController

    1. return self.topviewcontroller supportedInterfaceOrientations
    2. return self.topViewController shouldAutorotate
  • viewController

    1. 默认不用设置方向,前提基于BasicVC,默认竖屏
    2. 有需要再去设置supportInterfaceOrientation & shouldAutorotate
  • 注意事项:

    1. shouldAutorotate 设置为NO后,当前VC只支持默认UIInterfaceOrientationMaskPortrait方向

4. 方法四:

  • iOS8~iOS10+目前都有效:
- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    
    NSNumber *orientationUnknown = [NSNumber numberWithInt:UIInterfaceOrientationUnknown];
    [[UIDevice currentDevice] setValue:orientationUnknown forKey:@"orientation"];
    
    NSNumber *orientationTarget = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeRight];
    [[UIDevice currentDevice] setValue:orientationTarget forKey:@"orientation"];

}

- (void)viewWillDisappear:(BOOL)animated
{
    
    [super viewWillDisappear:animated];

    NSNumber *orientationUnknown = [NSNumber numberWithInt:UIInterfaceOrientationUnknown];
    [[UIDevice currentDevice] setValue:orientationUnknown forKey:@"orientation"];
    
    NSNumber *orientationTarget = [NSNumber numberWithInt:UIInterfaceOrientationPortrait];
    [[UIDevice currentDevice] setValue:orientationTarget forKey:@"orientation"];

}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscapeRight;
}

- (BOOL)shouldAutorotate
{
    return YES;
}

在viewWillAppear && viewWillDisAppear时,强制通过KVC设置Orientation,这里并没有涉及到私有API,不会被拒审,只能说这是一种不安全的方式来实现屏幕旋转。

  • 扩展:
    1. 强制改变当前页面的Orientation:
- (void)landscapeAction:(UIButton *)button
{
    if (self.supportedInterfaceOrientations == UIInterfaceOrientationMaskPortrait) {
        [self blackMagicChangeOrientation:UIInterfaceOrientationLandscapeRight];
    } else {
        [self blackMagicChangeOrientation:UIInterfaceOrientationPortrait];
    }
}

- (void)blackMagicChangeOrientation:(UIInterfaceOrientation)orientation
{
    UIViewController *viewController = [[UIViewController alloc] init];
    [viewController setModalPresentationStyle:UIModalPresentationCurrentContext];
    viewController.view.frame = CGRectZero;
    [self.navigationController pushViewController:viewController animated:NO];
    
    NSNumber *orientationUnknown = [NSNumber numberWithInt:UIInterfaceOrientationUnknown];
    [[UIDevice currentDevice] setValue:orientationUnknown forKey:@"orientation"];
    
    NSNumber *orientationTarget = [NSNumber numberWithInt:orientation];
    [[UIDevice currentDevice] setValue:orientationTarget forKey:@"orientation"];
    
    [self.navigationController popViewControllerAnimated:NO];
    
    NSLog(@"current self.view. x: %f, y: %f, width: %f, height: %f", self.view.frame.origin.x, self.view.frame.origin.y, self.view.frame.size.width, self.view.frame.size.height);
}

看到一坨代码是否想吐,的确,这种方式实际上通过push、pop一个viewController来触发Orientation的改动已影响现有的ViewController,目前测试结果有效。

  • 注意事项:
    • iOS8及以上版本以下代码失效:
 UIViewController *vc = [[UIViewController alloc]init]; 
 [self presentModalViewController:vc animated:NO]; 
 [self dismissModalViewControllerAnimated:NO];
  • viewWillDisappear、viewWillAppear等VC生命周期内self.view.frame变化,会影响页面布局

5. 坑爹的交互逻辑

  • 横屏push横屏
    采用上述方法四即可实现横屏push横屏效果。
LandscapeViewController *newLandscapeVC = [LandscapeViewController new];
 [self.navigationController pushViewController:newLandscapeVC animated:YES];
 

详情可参考Demo中的LandscapeViewController中pushVC实现。

6. 横屏遇到的一些问题:

0. Plus 横屏冷启动App

为了避免以横屏模式直接启动App,需要在appdidFinishLaunch中先设置好:

   [UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationPortrait;

这行代码需要在放在window之前。
可以参考这个解决方案

1. iOS10 横屏BUG

估计是系统的bug,在各大视频软件均遇到过这种情况,特别是在未开启锁方向的情况下。

2. 开启App支持方向,且只支持一个角度,需要UIViewController支持方向收敛

为了解决为了解决iOS8及以上首次装机横屏进来的时候出现Alert的时候应用出现错乱情况,收敛支方向,通过UIViewController的Category来实现默认的Orientation。因为iOS8以后系统默认的使用的Altert均为UIViewController,但并没有设置Orientation,结果首次安装用户横屏状态下,页面都错乱了。

3. StatusBarFrame监听通知

TabBarController接受了StatusBarFrame的通知,MainTab上的后面几个ViewController没有展示的情况下,先走到了viewDidLoad,这时View拿到的屏幕Frame都是横屏比例,结果页面就错乱了,最终通过监听StatusBarFrameChange中异常处理解决了提前走到viewDidLoad的情况。

7. 想法:

  1. 在一个运行数年之久的竖屏App开启横屏模式的确有很大挑战,页面布局,页面跳转原有的逻辑在新模式下都需要改造,也许还有更好的办法解决横屏问题,有待继续研究。

  2. 横屏push横屏,非官方推荐交互逻辑,一般采用present形式且无push下个页面的形式,这样设计有点反人类。

  3. 参考YouTube、腾讯视频,均采用页面自刷新形式来更新数据源。这样可以减少横屏模式下push方式,减少采坑点。

8.参考:

  1. cocoachina屏幕旋转
  2. stackoverflow iOS8 force change view controller orientation
  3. 腾讯视频全屏转换Demo
  4. different orientation
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345

推荐阅读更多精彩内容