SwiftUI 2.0 提供了原生的打开 URL scheme 的功能,我们可以十分方便的在代码中调用其他的 app。
Link
类似于 NavigationLink , 直接打开 URL scheme 对应的 app
Swift
Link("openURL",destination:safariUrl)
openURL
本次在 SwiftUI 2.0 中,苹果提供了若干个通过 Environment 注入的调用系统操作的方法。比如 exportFiles, importFiles, openURL 等。
Swift
@Environment(\.openURL) var openURL
openURL.callAsFunction(url)
代码范例
Swift
struct URLTest: View {
@Environment(\.openURL) var openURL
let safariUrl = URL(string:"http://www.apple.com")!
let mailUrl = URL(string:"mailto:foo@example.com?cc=bar@example.com&subject=Hello%20Wrold&body=Testing!")!
let phoneURl = URL(string:"tel:12345678")!
var body: some View {
List{
Link("使用 safari 打开网页",destination:safariUrl)
Button("发送邮件"){
openURL.callAsFunction(mailUrl){ result in
print(result)
}
}
Link(destination: phoneURl){
Label("拨打电话",systemImage:"phone.circle")
}
}
}
}
模拟器仅支持极少数的 URL,最好使用真机测试 苹果官方提供的一些 URL scheme