美文网首页
iOS监听设备旋转方向

iOS监听设备旋转方向

作者: 小黄人写代码 | 来源:发表于2015-07-04 21:17 被阅读758次
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
    if (self.interfaceOrientation == UIDeviceOrientationPortrait) {
        NSLog(@"竖直");
    } else if (self.interfaceOrientation == UIDeviceOrientationLandscapeLeft) {
        NSLog(@"水平向左");
    } else if(self.interfaceOrientation == UIDeviceOrientationLandscapeLeft) {
        NSLog(@"水平向右");
    }
}

相关文章

网友评论

      本文标题:iOS监听设备旋转方向

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