测试已测试 | ✗ |
语言语言 | Obj-CObjective C |
许可证 | Apache 2 |
发布上次发布 | 2014年12月 |
由 Ernesto Rivera 和 Ernesto Rivera 维护。
通过使用 CoreMotion 来在 '方向锁定' 中获取方向,通知 iOS 设备方向变化的观察者。
这些代码是在 ARC 下。
需要以下框架。
CoreMotion.framework CoreGraphics.framework
运行以下命令。
[MotionOrientation initialize];
然后您可以接收以下通知。
MotionOrientationChangedNotification,当设备方向更改时。 MotionOrientationInterfaceOrientationChangedNotification,仅在界面方向更改时。
然后您可以检索方向信息。
UIInterfaceOrientation interfaceOrientation = [MotionOrientation sharedInstance].interfaceOrientation; UIDeviceOrientation deviceOrientation = [MotionOrientation sharedInstance].deviceOrientation;