我使用以下代码注册 Newsstand 应用程序的推送通知。
[application registerForRemoteNotificationTypes:UIRemoteNotificationTypeNewsstandContentAvailability];
它调用 didRegisterForRemoteNotificationsWithDeviceToken 并且我得到一个设备令牌。当我登录 enabledRemoteNotificationTypes 它返回 0 并且 didReceiveRemoteNotification 永远不会被调用。
如果我注册 UIRemoteNotificationTypeAlert enabledRemoteNotificationTypes 返回 4 并且我收到通知,它工作正常。
我在 plist 中添加了所需的背景模式。
有任何想法吗?
谢谢。