在我的语音应用程序中,我正在使用 callkit 接收来电。 通过使用以下方法:
-(void)reportIncomingCall:(NSUUID*)UDID handle:(NSString*)handle{
在我的 iPhone 本地呼叫应用程序的呼叫历史记录中,我可以看到此拨入呼叫的日志。
我想从 iPhone 本机呼叫应用程序拨打电话。我为 WhatsApp,视频群聊等应用程序工作。但是,当我尝试从来电记录中呼叫用户时,无法唤醒我的应用程序。
- (NSUUID *)reportOutgoingCallContactIdentifier:(NSString *)identifier destination:(NSString *)name telNumber:(NSString *)telnum
答案 0 :(得分:2)
基本上,您需要为目标创建Intents Extension,以便处理来自本地通话历史记录的音频通话。
在Xcode中:
文件->新建->目标
选择意图扩展
这里是扩展的主要类,这就是它的外观
class IntentHandler: INExtension, INStartAudioCallIntentHandling {
func handle(intent: INStartAudioCallIntent, completion: @escaping (INStartAudioCallIntentResponse) -> Void) {
let response: INStartAudioCallIntentResponse
defer {
completion(response)
}
// Ensure there is a person handle
guard intent.contacts?.first?.personHandle != nil else {
response = INStartAudioCallIntentResponse(code: .failure, userActivity: nil)
return
}
let userActivity = NSUserActivity(activityType: String(describing: INStartAudioCallIntent.self))
response = INStartAudioCallIntentResponse(code: .continueInApp, userActivity: userActivity)
}
}
然后,您需要为应用提供URLScheme,以便在应用代表收到openURL时启动VoIP呼叫
这是NSUserActivity的扩展名,可以帮助您检测开始呼叫的意图
import Intents
@available(iOS 10.0, *)
protocol SupportedStartCallIntent {
var contacts: [INPerson]? { get }
}
@available(iOS 10.0, *)
extension INStartAudioCallIntent: SupportedStartCallIntent {}
@available(iOS 10.0, *)
extension NSUserActivity {
var startCallHandle: String? {
guard let startCallIntent = interaction?.intent as? SupportedStartCallIntent else {
return nil
}
return startCallIntent.contacts?.first?.personHandle?.value
}
}
您还需要在目标设置中注册URL方案:
Xcode目标设置,选择“信息卡”,然后在底部的“ URL类型”上,选择+
添加新类型并为其命名,例如voipCall
在AppDeledate中重写以下功能
func application(_ application: UIApplication,
continue userActivity: NSUserActivity,
restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
if userActivity.startCallHandle {
// START YOUR VOIP CALL HERE ----
}
return true
}