美文网首页
iOS 屏幕旋转

iOS 屏幕旋转

作者: 超C | 来源:发表于2017-06-29 16:54 被阅读122次

屏幕旋转

认知

期望达到的目的

  1. 如何让App支持屏幕旋转
  2. 如何让App屏幕旋转
  3. 如何保证屏幕旋转后布局不会乱

总结

期望实现可主动旋转屏幕的操作方法
方法一

  1. 禁用旋转, - shouldAutorotate 返回NO
  2. 手动 transform / bounds / center 旋转视图
  3. 状态栏使用 UIApplicationsetStatusBarOrientation:animated 方法旋转

方法二

  1. 启用旋转, - shouldAutorotate 返回YES(默认操作)
  2. 使用条件限制 AppDelegate 中代理方法返回的界面方向
  3. 调用[[UIDevice currentDevice] setValue:value forKey:@"orientation"];修改界面方向
  4. 重写- (BOOL)prefersStatusBarHidden返回是否隐藏状态栏

总结内容来自下面所有超链接以及自身项目, 最下方保留一份博客文章

支持屏幕旋转

支持方式一

添加info.plist中Supported interface orientations所包含的字段

InfoPlist-1.jpg
DraggedImage.png

以上图片代表同一种方式

支持方式二

在AppDelegate中实现程序级别的所支持界面方向的代理方法

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
        return UIInterfaceOrientationMaskXxx;
    }
自定义旋转配置

控制器可以在内部管理自身所支持的旋转配置

自定义控制器旋转配置前提是已经使用以上方式设置支持屏幕旋转, 否则单独使用无效

  • 是否自动旋转
    - (BOOL)shouldAutorotate { return YES/NO; }

误区: shouldAutorotate并不单单代表自动旋转, 还相当于旋转的开关, 如果返回NO, 那么屏幕

  • 所支持旋转方向
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations { return mask; }

参考文章: 更完整
参考文章

旋转屏幕

自动感应旋转

条件

  1. 开启了屏幕旋转支持
  2. 没有使用- shouldAutorotate限制
手动旋转
id value = [NSNumber numberWithInteger: self.isFullScreen ? UIInterfaceOrientationLandscapeRight : UIInterfaceOrientationPortrait];
/// 核心代码
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];

/// 等价于, 但是但是但是, 测试失败...失败啊
objc_msgSend([UIDevice currentDevice], @selector(setOrientation:), self.isFullScreen?UIInterfaceOrientationLandscapeRight:UIInterfaceOrientationPortrait);

强制屏幕旋转

旋转后的布局

适当的位置布局

布局在 - viewWillLayoutSubviews 中进行, 发生旋转还会调用该方法
在内部判断当前屏幕的方向 / 宽高值进行不同的布局

旋转交互方法中更新布局

参考资料

    - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator {
    
        [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
    
        // Code here will execute before the rotation begins.
        // Equivalent to placing it in the deprecated method -[willRotateToInterfaceOrientation:duration:].
        [coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {
            // Place code here to perform animations during the rotation.
            // You can pass nil for this closure if not necessary.
            // Reorganize views, or move child view controllers.
            if (UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)) {
                [self.redView mas_updateConstraints:^(MASConstraintMaker *make) {
                    make.size.mas_equalTo(CGSizeMake(200, 200));
                }];
            }
    
            if (UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation)) {
                [self.redView mas_updateConstraints:^(MASConstraintMaker *make) {
                    make.size.mas_equalTo(CGSizeMake(100, 100));
                }];
            }
        }
                                     completion:^(id<UIViewControllerTransitionCoordinatorContext> context){
                                         // Code here will execute after the rotation has finished.
                                         // Equivalent to placing it in the deprecated method -[didRotateFromInterfaceOrientation:].
                                         // Do any cleanup, if necessary.
    
                                     }];
    }

注意:

在 iOS 9 以后,横屏时状态栏会隐藏,如果想要显示状态栏,需要手动控制。

  • 在 Info.plist 中 设置 View controller-based status bar appearance 值为 YES
  • 在 view controller 中重写 prefersStatusBarHidden 返回 false
    override var prefersStatusBarHidden: Bool {
        return false
    }

博客备份

完整博客

相关文章

  • 屏幕旋转

    屏幕旋转 推荐文档 了解UIWindow——UIWindow实践 iOS屏幕旋转问题总结 IOS:屏幕旋转与变换 ...

  • OC - 屏幕旋转(自动旋转、手动旋转、兼容iOS6之前系统)

    导读: 一、iOS6之前屏幕旋转知识了解 二、iOS6(包括iOS6)之后屏幕旋转知识了解 三、自动旋转具体操作 ...

  • 屏幕旋转和弹出框

    iOS中控制屏幕旋转相关方法 shouldAutorotate:是否支持屏幕旋转 alertView:clicke...

  • iOS Rotation

    iOS屏幕旋转学习笔记iOS开发中使用屏幕旋转功能的相关方法 1、基本知识点解读 了解屏幕旋转首先需要区分两种 o...

  • iOS传感器:实现一个随屏幕旋转的图片

    iOS传感器:实现一个随屏幕旋转的图片 iOS传感器:实现一个随屏幕旋转的图片

  • iOS 屏幕旋转处理

    iOS 屏幕旋转处理 在 iOS 设备上, 屏幕旋转是个挺坑比的问题. 苹果希望 app 对整个 app 做统一的...

  • iOS屏幕旋转

    方式一 假旋转 修改view的transform,通过旋转来实现横屏 工程配置 重写shouldAutorotat...

  • iOS 屏幕旋转

    第一种 在基类控制器,RootTableViewController,RootNaviViewController...

  • iOS屏幕旋转

    一、两种方向的区别 设备方向设备的物理方向,由类型UIDeviceOrientation表示,当前设备方向获取方式...

  • iOS屏幕旋转

    iOS屏幕旋转 1.基本属性和概念 shouldAutorotate supportedInterfaceOrie...

网友评论

      本文标题:iOS 屏幕旋转

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