私は iPhone アプリケーションを開発しており、API 呼び出しを使用してデバイスの向きを追跡しています。ただし、アプリケーションがフォアグラウンドにある間、次を使用してデバイスの向きを追跡できます。
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(deviceOrientationDidChange:) name: UIDeviceOrientationDidChangeNotification object: nil];
アプリケーションがバックグラウンド モードのときにも通知を受け取る必要があります。
バックグラウンド モードでオリエンテーション通知を取得する方法を教えてください。