ios(ipad,iphone)屏幕旋转检测通用方法

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

我下面介绍两种方法:

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

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

- (void)statusBarOrientationChange:(NSNotification *)notification

{

    

    UIInterfaceOrientation orientation = [[UIApplication
sharedApplication] statusBarOrientation];

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

    {

        //

    }

    

    if (

        orientation ==UIInterfaceOrientationLandscapeLeft)
// home键靠左

    {

        //

    }

    

    if (orientation ==
UIInterfaceOrientationPortrait)

    {

        //

    }

    if (orientation ==
UIInterfaceOrientationPortraitUpsideDown)

    {

        //

    }

}

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

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

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

  [[NSNotificationCenter
defaultCenter] addObserver: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较底层,在上面两个方法能够解决问题的情况下建议不要用,使用不当性能损耗非常大)。

时间: 2024-11-02 18:39:54

ios(ipad,iphone)屏幕旋转检测通用方法的相关文章

不同Android版本设备正确获取屏幕分辨率的通用方法

不同Android版本设备正确获取屏幕分辨率的通用方法         谈到android屏幕分辨率,大家都知道,但是怎么正确的获取屏幕的分辨率呢?android2.2\2.3\4.0\4.1使用的方法一样吗?       答案是否定的.事物是发展变化的,android也不例外,android2.2.2.3因为标配是有触摸屏按钮的,也就是说触摸屏上BACK.HOME.MEAN是在触摸屏分辨率识别范围之外的.但是在android4.0以后,已经取消了,开始使用软件按钮了,在屏幕的下方会占掉一定的高

iOS开发中控制屏幕旋转的编写方法小结_IOS

在iOS5.1 和 之前的版本中, 我们通常利用 shouldAutorotateToInterfaceOrientation: 来单独控制某个UIViewController的旋屏方向支持,比如: 复制代码 代码如下: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  {      return (interfaceOrientation == UIInter

处理iOS设备的屏幕旋转

某些情况下,不强制的给用户唯一的屏幕角度给用户.这样用户可以旋转手机得到不同的视觉体验. 最简单的就是safari,横看竖看都可以. 这时需要捕捉用户的屏幕旋转事件并处理.很简单,才两步.比把大象装冰箱都简单. 下面是代码: 1 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 2 { 3 self = [super initWithNibName:nibNameOrNil bundl

iPhone屏幕旋转的例子

  先在interface builder上放上6个rectbutton,竖放,一排三个 然后我们下面来看代码 .h文件代码 1 // 2 // AutoSizeViewController.h 3 // AutoSize 4 // 5 // Created by Scott on 10-10-26. 6 // Copyright 2010 __MyCompanyName__. All rights reserved. 7 // 8 9 #import 10 11 @interface Auto

IPad/IPhone 开发中的布局问题

  初步学习IOS(IPad/IPhone)开发,这两天在界面布局上花了很多时间. IOS的界面方法有两种方式: 1 使用Interface Builder创建界面,然后和相应的controller相关联 2 通过code手动的添加UI组件和布局 优缺点: 方法1可以创建界面快捷而简单,也会比较易于维护.缺点就是动态性不够,据说性能上也会差些(由于需要读取XIB文件). 方法2的优点就是比较灵活和可控.缺点正好是方法1的优点的方面. 个人对这两种方式的体会: *使用方法1来划分组件,每个功能都有

苹果ipad如何锁屏旋转?ipad锁屏旋转设置

方法一.通过控制中心锁定屏幕旋转 1.如下图所示,我们在ipad主屏用手指在屏幕底部向上扫动 2.然后我们在控制中心点击"锁定" 3.在这里就保经设置锁定屏幕旋转 了. 方法二.通过 iPad 侧边栏开关锁定屏幕旋转 1.这个方法是一步步设置了,我们进入ipad"设置" 2. 找到"通用"选项 3.然后点击"侧边开关用于" 选项 4.这时我们会看到有一个"锁定屏幕旋转"选项然后点击进入. 5.设定侧边开关用

详解Android中Runtime解决屏幕旋转问题(推荐)_Android

前言 大家或许在iOS程序开发中经常遇到屏幕旋转问题,比如说希望指定的页面进行不同的屏幕旋转,但由于系统提供的方法是导航控制器的全局方法,无法随意的达到这种需求.一般的解决方案是继承UINavrgationViewController,重写该类的相关方法,这样虽然也能解决问题,但是在重写的过程中至少产生两个多余的文件和不少的代码,这显然不是我们想要的.下面就使用一种较底层的方法解决这个问题. 基本原理 动态的改变UINavrgationViewController的全局方法,将我们自己重写的su

苹果5S/iphone5s设置禁止屏幕旋转、黑名单、所有人来电

禁止屏幕旋转 1.这个方法简单我们只要在手机主屏,然后向下拉动通知,就会看到有一个可以锁定屏幕,再点击一下就可以进行屏幕旋转 接受所有人来电 2.在苹果手机中我们点击"设置--勿扰模式--允许这些人的来电---选择任何人"这样就可以接受任何人的来电了. 设置黑名单 3.黑名单也非常的简单呀,我们点击"设置--电话--黑名单设置"就可以了哦.

iOS 6中控制屏幕旋转支持方向的方法

在iOS5.1 和 之前的版本中, 我们通常利用 shouldAutorotateToInterfaceOrientation: 来单独控制某个UIViewController的旋屏方向支持,比如: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrientation == UIInterfaceOrientationPo