码迷,mamicode.com
首页 > 移动开发 > 详细

检测手机翻转

时间:2014-12-01 15:36:46      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   on   div   log   bs   

代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //监听手机方向改变事件
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(orientationChanged)
                                                 name:UIDeviceOrientationDidChangeNotification
                                               object:nil];
}
//处理函数
-(void) orientationChanged
{
    switch ([[UIDevice currentDevice] orientation]) {
        case UIDeviceOrientationPortrait:
            NSLog(@"portrait");
            break;
        case UIDeviceOrientationPortraitUpsideDown:
            NSLog(@"portraitUpSideDown");
            break;
        case UIDeviceOrientationLandscapeLeft:
            NSLog(@"landscapeLeft");
            break;
        case UIDeviceOrientationLandscapeRight:
            NSLog(@"landscapeRight");
            break;
        case UIDeviceOrientationFaceDown:
            NSLog(@"facedown!!");
            break;
        case UIDeviceOrientationFaceUp:
            NSLog(@"FaceUp");
            break;
        default: 
            break; 
    } 
}

 

检测手机翻转

标签:style   blog   io   color   sp   on   div   log   bs   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4135166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!