我目前正在使用我的UIViewController的 interfaceProperty ,因为iOS 8已被弃用。
@property(nonatomic,readonly) UIInterfaceOrientation interfaceOrientation NS_DEPRECATED_IOS(2_0,8_0);
我正在使用所述属性来确定物理主页按钮的位置以用于加速度计和重力矢量校正。 UIDeviceOrientation不是合适的替代品,因为这些更正实际上应用于用户界面。
我搜索过合适的重构建议,但是,它们并不适用于我对该物业的使用。
答案 0 :(得分:4)
您可以尝试使用
UIApplication.sharedApplication().statusBarOrientation
它将返回UIInterfaceOrientation值,您可以使用该值来获取设备的界面方向。