0

我正在开发一个 iPhone 应用程序并使用 API 调用跟踪设备方向。但我可以在应用程序处于前台时使用以下方法跟踪设备方向:

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(deviceOrientationDidChange:) name: UIDeviceOrientationDidChangeNotification object: nil];

当我的应用程序处于后台模式时,我也需要收到通知。

请让我知道如何在后台模式下获得方向通知。

4

0 回答 0