使用未解析的标识符NSWorkspace

问题描述 投票:4回答:1

我想在浏览器中打开一个URL,但出现此错误:

使用未解析的标识符NSWorkspace

我的代码:

if let url = URL(string: "https://www.google.com"), NSWorkspace.shared().open(url) {
    print("default browser was successfully opened")
}
ios swift xcode swift3
1个回答
2
投票

您正在尝试为iOS的macOS编码添加代码。为iOS编码时,必须使用UIApplication.shared

if let url = URL(string: "https://google.com"), UIApplication.shared.canOpenURL(url) { 
    UIApplication.shared.open(url) 
}
© www.soinside.com 2019 - 2024. All rights reserved.