gpt4 book ai didi

iphone - 如何以编程方式获取失败/掉线的调用信息?

转载 作者:行者123 更新时间:2023-11-28 22:36:59 25 4
gpt4 key购买 nike

如何获取失败/掉线的调用信息?我们有任何私有(private) API 吗?

最佳答案

在 iOS 10.0+ 上,考虑使用 CallKit:https://developer.apple.com/documentation/callkit .


在 iOS 4.0–10.0 上,考虑检查 iOS Call Center API:https://developer.apple.com/documentation/coretelephony/ctcallcenter

例子:

self.callCenter = [[CTCallCenter alloc] init];

self.callCenter.callEventHandler = ^(CTCall* call) {


if ([call.callState isEqualToString:CTCallStateIncoming]) {


} else if ([call.callState isEqualToString:CTCallStateDialing]) {


} else if ([call.callState isEqualToString:CTCallStateConnected]) {


} else if ([call.callState isEqualToString:CTCallStateDisconnected]) {


}

关于iphone - 如何以编程方式获取失败/掉线的调用信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15656640/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com