Voip推送通知突然停止工作

时间:2016-03-09 03:06:21

标签: ios push-notification apple-push-notifications

我们的应用程序正在使用voip推送通知。我们使用以下代码注册APNS

[[10, 2, 3], [40, 5, 6]]

过去工作正常并且突然停止在最新的iOS版本9.2.1和9.3(测试版)中工作。现在,不询问用户是否希望允许通知。即使我们能够通过此api调用获取设备令牌

PKPushRegistry * voipRegistry = [[PKPushRegistry alloc] initWithQueue: dispatch_get_main_queue()];  
/  
voipRegistry.delegate = self;  
/  
voipRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP]; // register

非常感谢任何帮助。 感谢

1 个答案:

答案 0 :(得分:0)

我得到了苹果的答案,我们还需要使用registerUserNotificationSettings来询问用户推送通知权限。

希望它可以帮助别人。