我在这里挣扎了一段时间,这可能是我的错误,但我在任何地方都找不到,这是一个答案。
我已经以某些方式实现了 PushKit,但没有一个是有效的。
我添加了正确的背景模式,以正确的方式实现了回调,didUpdatePushCredentials
正在正常调用......
但是,credentials: PKPushCredentials!
变量给了我一个错误指针……它不是空的……不是零……什么都不是……它根本没有值……它被分配了垃圾……出于这个原因..我收到 EXC_BREAKPOINT..
我已经尝试了 3 种不同的设备...相同的行为...
我已经为 VoIP 推送创建了证书...
我以不同的方式做到了:
- 通过在 didRegisterForRemotePushNotification 之后创建 void Push Registry 对象
- 通过创建推送注册表而不注册远程推送通知...
- 通过使用主队列、全局队列和自定义队列创建注册表..
总是一样...
这是代码:
extension AppDelegate : PKPushRegistryDelegate {
func registerForVoipPush() {
self.registry = PKPushRegistry(queue:nil)
if self.registry != nil {
self.registry!.delegate = self
self.registry!.desiredPushTypes = Set<String>(arrayLiteral: PKPushTypeVoIP)
}
//let notificationSettings = UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories:nil)
//UIApplication.sharedApplication().registerUserNotificationSettings(notificationSettings)
}
func pushRegistry(registry: PKPushRegistry!, didUpdatePushCredentials credentials: PKPushCredentials!, forType type: String!) {
//print out the VoIP token. We will use this to test the nofications.
NSLog("voip token: \(credentials.token)")
if credentials != nil {
let username = NSUserDefaults.standardUserDefaults().objectForKey("username") as? String
if username != nil {
ServerDefinitions.subscribeForPush(username!, token: NSString(data: credentials.token, encoding: NSUTF8StringEncoding) as! String, callback: { (retMsg) -> Void in
print(retMsg)
})
}
}
}
func pushRegistry(registry: PKPushRegistry!, didReceiveIncomingPushWithPayload payload: PKPushPayload!, forType type: String!) {
let payloadDict = payload.dictionaryPayload["aps"] as? Dictionary<String, String>
let message = payloadDict?["alert"]
//present a local notifcation to visually see when we are recieving a VoIP Notification
if UIApplication.sharedApplication().applicationState == UIApplicationState.Background {
let localNotification = UILocalNotification();
localNotification.alertBody = message
localNotification.applicationIconBadgeNumber = 1;
localNotification.soundName = UILocalNotificationDefaultSoundName;
UIApplication.sharedApplication().presentLocalNotificationNow(localNotification);
}
else {
dispatch_async(dispatch_get_main_queue(), { () -> Void in
print("Incoming Call")
})
}
NSLog("incoming voip notfication: \(payload.dictionaryPayload)")
}
func pushRegistry(registry: PKPushRegistry!, didInvalidatePushTokenForType type: String!) {
NSLog("token invalidated")
}
}
编辑:
请注意,上面的代码是 AppDelegate 的扩展,只是为了分隔代码,所以它变得更具可读性。
我还添加var registry : PKPushRegistry?
了 AppDelegate 的。为了让它工作,你必须registerForVoipPush()
在代码中的某个地方调用。就我而言,我是通过一个按钮完成的。
请帮我!