我正在开发iPhone应用程序并使用API调用跟踪设备方向。但我可以在应用程序处于前台时使用以下方式跟踪设备方向:
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(deviceOrientationDidChange:) name: UIDeviceOrientationDidChangeNotification object: nil];
我的应用程序处于后台模式时也需要收到通知。
请告诉我如何在后台模式下获取迎新通知。