didUpdatePushCredentials никогда не вызывается в IOS 10.2
Итак, я позвонил:
self.pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
И это работает на IOS 9, 10.0.2 и 10.3. Вызван didUpdatePushCredentials и все в порядке. Однако для ios 10.2 он никогда не вызывается, и вся функциональность voip не работает. Не могли бы вы посоветовать, что с ним не так?
PS: настроены функции передачи голоса по IP и удаленные уведомления.
1 ответ
См. Код ObjectiveC для интеграции pushkit
AppDelegate.h
#import <UIKit/UIKit.h>
#import <PushKit/PushKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate,PKPushRegistryDelegate>
{
PKPushRegistry *pushRegistry;
}
@property (strong, nonatomic) UIWindow *window;
@end
AppDelegate.m
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
pushRegistry.delegate = self;
pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
return YES;
}
#define PushKit Delegate Methods
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(NSString *)type{
if([credentials.token length] == 0) {
NSLog(@"voip token NULL");
return;
}
NSLog(@"PushCredentials: %@", credentials.token);
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(NSString *)type
{
NSLog(@"didReceiveIncomingPushWithPayload");
}
@end