gpt4 book ai didi

swift - 在 Swift 中运行工作流程 (Mac)

转载 作者:行者123 更新时间:2023-12-03 18:07:30 25 4
gpt4 key购买 nike

大家好,

我有一个工作流文件,我想从 Swift Mac 应用程序运行它。这是我当前的代码:

    @IBAction func onChangeMode(_ sender: Any) {
guard let workflowPath = Bundle.main.path(forResource: "wf", ofType: "workflow") else {
print("resource not found")
return
}

let workflowURL = URL(fileURLWithPath: workflowPath)
do {
try AMWorkflow.run(at:workflowURL, withInput: nil)
} catch {
print("Error: \(error)")
}
}

但是,我不断收到此错误:

Error: Error Domain=com.apple.Automator Code=0 "Automator encountered an error running this workflow: “Sandboxed applications can not use Automator.framework to run workflows.”" UserInfo={NSUnderlyingError=0x600000cad8c0 {Error Domain=com.apple.Automator Code=0 "Sandboxed applications can not use Automator.framework to run workflows." UserInfo={NSLocalizedDescription=Sandboxed applications can not use Automator.framework to run workflows.}}, NSLocalizedDescription=Automator encountered an error running this workflow: “Sandboxed applications can not use Automator.framework to run workflows.”, NSLocalizedFailureReason=Sandboxed applications can not use Automator.framework to run workflows.}

我该如何解决这个问题?如果有人有解决方案,我将不胜感激 - 我是 Mac 开发新手。

非常感谢大家,希望你们在这段时间一切顺利。

最佳答案

如果您想运行工作流程(这就是错误所说的!),则不得为您的应用使用沙箱,因此请转到此处:

enter image description here

然后按圆圈中的“x”按钮。请注意,没有沙箱的应用程序无法上传到 Mac App Store。

关于swift - 在 Swift 中运行工作流程 (Mac),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61548199/

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