您可以从Swift应用程序执行Applescript脚本吗

我有一个简单的AppleScript发送电子邮件。如何在Swift应用程序中调用它?

(我无法通过Google找到答案。)

回答:

经过测试:可以执行以下操作(添加了任意脚本路径):

import Foundation

let task = Process()

task.launchPath = "/usr/bin/osascript"

task.arguments = ["~/Desktop/testscript.scpt"]

task.launch()

以上是 您可以从Swift应用程序执行Applescript脚本吗 的全部内容, 来源链接: utcz.com/qa/400807.html

回到顶部