博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios(ipad,iphone)屏幕旋转检测通用方法
阅读量:2396 次
发布时间:2019-05-10

本文共 2247 字,大约阅读时间需要 7 分钟。

转载自: http://blog.csdn.net/openglnewbee/article/details/40404495

在特别的场景下,需要针对屏幕旋转作特殊处理。在系统下实现相关的功能还是比较方便的。

我下面介绍两种方法:

1.注册UIApplicationDidChangeStatusBarOrientationNotification通知(举例:在一个viewcontroller类的viewdidload中注册该通知),示例代码如下:

        [[NSNotificationCenter defaultCenteraddObserver:self selector:@selector(statusBarOrientationChange:)name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];

- (void)statusBarOrientationChange:(NSNotification *)notification

{

    

    UIInterfaceOrientation orientation = [[UIApplication sharedApplicationstatusBarOrientation];

    if (orientation == UIInterfaceOrientationLandscapeRight// home键靠右

    {

        //

    }

    

    if (

        orientation ==UIInterfaceOrientationLandscapeLeft// home键靠左

    {

        //

    }

    

    if (orientation == UIInterfaceOrientationPortrait)

    {

        //

    }

    if (orientation == UIInterfaceOrientationPortraitUpsideDown)

    {

        //

    }

}

注意这种方式监听的是StatusBar也就是状态栏的方向,所以这个是跟你的布局有关的,你的布局转了,才会接到这个通知,而不是设备旋转的通知。

当我们关注的东西和布局相关而不是纯粹设备旋转,我们使用上面的代码作为实现方案比较适合。

2.注册UIDeviceOrientationDidChangeNotification通知(举例:我们同样在一个viewcontroller类的viewdidload中注册该通知),示例代码如下:

  [[NSNotificationCenter defaultCenteraddObserver:self selector:@selector(orientChange:)name:UIDeviceOrientationDidChangeNotification object:nil];

- (void)orientChange:(NSNotification *)noti

{

    

    NSDictionary* ntfDict = [noti userInfo];

    

    UIDeviceOrientation  orient = [UIDevice currentDevice].orientation;

    /*

     UIDeviceOrientationUnknown,

     UIDeviceOrientationPortrait,            // Device oriented vertically, home button on the bottom

     UIDeviceOrientationPortraitUpsideDown,  // Device oriented vertically, home button on the top

     UIDeviceOrientationLandscapeLeft,       // Device oriented horizontally, home button on the right

     UIDeviceOrientationLandscapeRight,      // Device oriented horizontally, home button on the left

     UIDeviceOrientationFaceUp,              // Device oriented flat, face up

     UIDeviceOrientationFaceDown             // Device oriented flat, face down   */

    

           switch (orient)

        {

            case UIDeviceOrientationPortrait:

                

                break;

            case UIDeviceOrientationLandscapeLeft:

    

                

                break;

            case UIDeviceOrientationPortraitUpsideDown:

 

          

                break;

            case UIDeviceOrientationLandscapeRight:

        

           

                break;

                

            default:

                break;

        }

}

注意到这种方式里面的方向还包括朝上或者朝下,很容易看出这个完全是根据设备自身的物理方向得来的,当我们关注的只是物理朝向时,我们通常需要注册该通知来解决问题(另外还有一个加速计的api,可以实现类似的功能,该api较底层,在上面两个方法能够解决问题的情况下建议不要用,使用不当性能损耗非常大)。
你可能感兴趣的文章
Maven--排除依赖、归类依赖和优化依赖
查看>>
Maven--插件的获取和配置
查看>>
MySQL--基础四(排序查询)
查看>>
MySQL--基础五(单行函数)
查看>>
MySQL--基础六(分组函数)
查看>>
MySQL--基础七(分组查询、排序查询)
查看>>
MySQL--基础八(连接查询)
查看>>
MySQL--基础九(sql99连接查询)
查看>>
MySQL--基础十(子查询)
查看>>
Git--Eclipse操作、忽略文件、推送到远程库
查看>>
Oracle--同义词详解
查看>>
Oracle--存储过程概述、创建和执行
查看>>
Oracle--带参数的存储过程(IN、OUT和IN OUT)
查看>>
Oracle--触发器详解(分类、作用、执行顺序和语法)
查看>>
Oracle--DML触发器
查看>>
Oracle--替代触发器(INSTEAD OF)
查看>>
Oracle--系统事件触发器、用户事件触发器
查看>>
Oracle--管理触发器(查看、启用/禁用、修改、删除)
查看>>
Oracle--事务详解
查看>>
Oracle--锁(概述、分类)
查看>>