如果应用程序终止或强制执行,我们如何调用portsip委托

时间:2017-02-08 07:30:48

标签: ios10 callkit portsip

我在我的VOIP呼叫应用程序中使用了portsip SDK(试用版)。呼叫在前台和后台也能很好地工作。我在客户端使用Call Kit框架进行传入/传出呼叫,当我从后台删除应用程序或强制使用应用程序时,在这种情况下,当我尝试与其他设备呼叫呼叫即将到来时,我收到了VOIP推送但端口sip传入委托不调用,而如果我再次调用(第二次在相同的应用程序状态)端口sip传入委托调用。所以直到传入的代表不打电话我们才能接受。拒绝来电。**

因此,如果应用程序被终止或强行推出,请帮助我如何调用端口sip委托。

1 个答案:

答案 0 :(得分:0)

我遇到了类似的问题,但我没有使用portsip。所以,如果它与portsip有关,我的回答可能不正确,但是我在Apple Example上执行了一些步骤。当我添加configureAudioSession()方法时,一切正常。例如:

func provider(_ provider: CXProvider, perform action: CXStartCallAction) {
    // Create & configure an instance of SpeakerboxCall, the app's 
    configureAudioSession()
    self.provider.reportOutgoingCall(with: call.uuid!, connectedAt: Date())
    action.fulfill()
}
func provider(_ provider: CXProvider, perform action: CXAnswerCallAction) {
    // Retrieve the SpeakerboxCall instance corresponding to the action's call UUID
    guard callManager.callWithUUID(uuid: action.callUUID) != nil else {
        action.fail()
        return
    }

    configureAudioSession()

    // Signal to the system that the action has been successfully performed.
    action.fulfill()
}

希望它有所帮助。