アプリケーションにニューススタンド機能を実装していますが、アプリはプッシュ通知を受け取りますが、バックグラウンド モードで起動しません。
通知アラートをタップすると、アプリが起動し、「content-available」が表示されます:1 が辞書に存在し、問題もダウンロードされますが、アプリは自動的に起動されません。
plistに追加しました:
<key>UIBackgroundModes</key>
<array>
<string>newsstand-content</string>
</array>
そしてdidFinishLaunchingWithOptionsに:
[[NSUserDefaults standardUserDefaults]setBool: YES forKey:@"NKDontThrottleNewsstandContentNotifications"]; // for testing purposes
[[NSUserDefaults standardUserDefaults] synchronize];
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeNewsstandContentAvailability )];
また、私のアプリが [設定] -> [ストア] -> [自動ダウンロード] の下に表示されていないこともわかります (他の雑誌がそこに表示されます)。
何か不足していますか?これはサンドボックス環境で動作するはずですか?