在 iPhone 上以编程方式接听来电
我们如何在 iPhone 上使用 Objective-C 以编程方式接听来电?
How can we answer an incoming voice call programmatically using Objective-C on an iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。您甚至没有收到通知或任何有来电的通知。您所能做的就是要求 iPhone 拨打电话(通过
tel:
URI 方案),但您甚至不知道手机是否确实拨打了该号码。顺便说一句,这是出于隐私/反恶意软件原因的目的。
You can't. You don't even got a notification or whatever that there's an incoming call. All you can do is ask the iPhone to make a call (via the
tel:
URI scheme) but you won't even know whether the phone actually did dial the number.That is on purpose for privacy/anti-malware reasons, BTW.