我正在使用callkit& pushkit实现voip调用。
要打电话,这是代码
callManager?.startCall(handle: String(format: "%@", "Jane Doe"), video: false)
我也得到了voip推送但是在那里,我没有得到接收器的UUID,有没有办法得到它以便接收呼叫。在
func pushRegistry(_ registry: PKPushRegistry, didReceiveIncomingPushWith payload: PKPushPayload, forType type: PKPushType) {
guard type == .voIP else { return }
print("\(#function) incoming voip notfication: \(payload.dictionaryPayload)")
let uuidString = payload.dictionaryPayload["UUID"] as? String {
let uuid = UUID(uuidString: uuidString)
print(uuid) // this is always nil
let backgroundTaskIdentifier = UIApplication.shared.beginBackgroundTask(expirationHandler: nil)
self.displayIncomingCall(uuid: uuid, handle: "Jane Doe"", hasVideo: false) { _ in
UIApplication.shared.endBackgroundTask(backgroundTaskIdentifier)
}
}
}
我们是否需要向服务器发送内容以便在voip推送中提供详细信息,请指出我做错了什么。
答案 0 :(得分:0)
可以从iOS App本身生成和存储UUID。但是UUID对于每个呼叫都应该是唯一的,并且当呼叫结束时,要使用该呼叫的相同UUID。
用于生成UUID,
NSUUID *callUUID = [NSUUID UUID];
有时这可能是零,使用下面的代码替代,
CFUUIDRef newUniqueID = CFUUIDCreate(kCFAllocatorDefault);
CFStringRef newUniqueIDString = CFUUIDCreateString(kCFAllocatorDefault, newUniqueID);
NSString *uuid = (__bridge NSString *)newUniqueIDString;
CFRelease(newUniqueIDString);
CFRelease(newUniqueID);
注意:上面的代码用Objective-C编写。