gpt4 book ai didi

ios - 在 Phone Call 功能的 UIAlert 中添加取消功能

转载 作者:行者123 更新时间:2023-11-28 06:16:55 25 4
gpt4 key购买 nike

我有一个功能,可以在按下按钮时调用电话。

private func callNumber(phoneNumber:String) {

if let phoneCallURL = URL(string: "tel://\(phoneNumber)") {

let application:UIApplication = UIApplication.shared
if (application.canOpenURL(phoneCallURL)) {
application.open(phoneCallURL, options: [:], completionHandler: nil)
}
}
}

如果用户在弹出确认调用的警报时点击取消,我想添加一些功能。我该怎么做?

最佳答案

根据这个问题:Prompt when trying to dial a phone number using tel:// scheme on iOS 10.3

这个警告实际上是 iOS 10.3 中的一个错误,应该在将来的某个时候被删除。它不应该用于 native 应用程序中的“电话:”链接。

也就是说,我认为没有办法检测警报以及用户如何与之交互。

关于ios - 在 Phone Call 功能的 UIAlert 中添加取消功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44853014/

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