从 App Extension (iMessage) 调用
Call from App Extension (iMessage)
我正在为我的应用开发 iMessage 应用扩展,我想知道是否可以从应用扩展发起 phone 调用?
我尝试使用以下代码,但它需要我(深层链接)包含应用程序。
cell.didTapCallNowButton = { cell in
if let phoneNumber = cell.Model.phone,
let url = URL(string: "telprompt:\(phone)") {
self.extensionContext?.open(url, completionHandler: nil)
}
}
以下是 Apple 开发者论坛上 pdm 'Apple Staff' 的回答:
没有。 iMessage 应用程序只能在其父应用程序中打开 URL。
我正在为我的应用开发 iMessage 应用扩展,我想知道是否可以从应用扩展发起 phone 调用?
我尝试使用以下代码,但它需要我(深层链接)包含应用程序。
cell.didTapCallNowButton = { cell in
if let phoneNumber = cell.Model.phone,
let url = URL(string: "telprompt:\(phone)") {
self.extensionContext?.open(url, completionHandler: nil)
}
}
以下是 Apple 开发者论坛上 pdm 'Apple Staff' 的回答:
没有。 iMessage 应用程序只能在其父应用程序中打开 URL。