如何在我的 iPhone 应用程序中检测来电和去电结束事件?
这是一个场景: 我从我的应用程序中拨打电话。当通话结束时,我需要触发一个事件,例如调用 Web 服务。如何在核心电话框架中使用 CTcallcenter?
谢谢
Here is a scenario:
I make a call from my application .When the call ends i need to fire a event such as calling a web service .How can do with CTcallcenter in core telephony frame work ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 用于此目的的蜂窝呼叫状态
CTCallStateDialing
在建立连接之前、用户发起呼叫时的呼叫状态的电话。
CTCallStateIncoming
在建立连接之前,当有呼叫传入但用户尚未应答时的呼叫状态。
CTCallStateConnected
当所有相关方完全建立呼叫时的呼叫状态。
CTCallStateDisconnected
呼叫终止时的呼叫状态。
you can use Cellular Call States for this purpose
CTCallStateDialing
The call state, before connection is established, when the user initiates the call.
CTCallStateIncoming
The call state, before connection is established, when a call is incoming but not yet answered by the user.
CTCallStateConnected
The call state when the call is fully established for all parties involved.
CTCallStateDisconnected
The call state upon call termination.