检测手机翻转

代码:

- (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; 
    } 
}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。