我在我们的应用程序中实现了调用工具包,仅用于在应用程序关闭或在后台(推送调用通知)时收到来电。我只是注意到,每次我接到一个电话并使用 callkit 显示它时,这个电话会自动出现在通话记录中( native Call App 中的“最近”选项卡)。
每次我点击其中一个最近的应用程序时,我的应用程序都会恢复或启动。
我想让应用程序在用户按下最近的电话后拨出电话,但我没有找到任何相关信息。
- 有没有一种方法可以检测到该应用程序是通过最近一次点击调用打开/恢复的?
- 我们可以禁用这个 callkit 功能吗?
感谢提供信息
Best Answer-推荐答案 strong>
I wanted to make the app place an outgoing call after the user press
the recent call but I didn't find anything about it.
在您应用的 Info.plist 中,您必须在 NSUserActivityTypes 键中包含 INStartAudioCallIntent 和/或 INStartVideoCallIntent ,并且您的应用委托(delegate)必须实现 -application:continueUserActivity:restorationHandler: 方法来处理开始调用意图。有关详细信息,请参阅 Speakerbox 示例应用。
Can we disable this callkit feature ?
如果您没有为调用的 CXCallUpdate 设置 remoteHandle ,则 Recents 中的项目将不可按下。
关于iOS Callkit - 来电最近历史记录,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/41229235/
|