关于获取设备方向不准确的问题

我们平时在应用内获取设备方向一般有以下两种方式:

1、UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;

2、UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;

但今天在使用[UIDevice currentDevice].orientation时碰到一个问题,界面是横屏,但返回的是UIDeviceOrientationPortrait。


查看了官方api介绍也没理解出问题的原因,但方法二是准确的。

第一个是设备方向,第二个是状态栏方向。在做横竖屏切换频繁时建议使用方法二。

你可能感兴趣的:(关于获取设备方向不准确的问题)