gpt4 book ai didi

swift - 如何从 Xcode 项目(Cocoa App)从 Mac 打开应用程序

转载 作者:行者123 更新时间:2023-11-30 12:48:14 25 4
gpt4 key购买 nike

今天我第一次创建了一个 Cocoa 应用程序。我想创建一个简单的应用程序,它将从我的 Mac 打开一个应用程序,如果找不到文件,它将在 Label 中显示一个 Link下载应用程序。这是我正在努力解决的代码。

  if let fileCheck = NSURL.fileURL(withPath: "/Applications/Mango.app") {
if NSWorkspace.shared().open(fileCheck as URL) {
print("url successfully opened")
}
} else {
self.downloadLink.insertText("Invalid Path")
}

NSURL.fileURL(withPath: "/Applications/Mango.app") 给我 条件绑定(bind)必须是可选的 ,我不知道如何解决这个问题。 我也在努力解决如何在我的标签上显示链接。任何好心的开发人员请帮忙。

最佳答案

有人给出了解决方案,我不知道他为什么删除它!

   if FileManager().fileExists(atPath: "/Applications/Mango.app") {
NSWorkspace.shared().open(NSURL(fileURLWithPath: "/Applications/Mango.app") as URL)
} else {
downloadLink.isHidden = false
}

关于swift - 如何从 Xcode 项目(Cocoa App)从 Mac 打开应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41340907/

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