如何在XCode的Cocoa应用程序中的Button单击事件上调用/运行python脚本?我正在尝试运行python脚本并在Cocoa应用程序中的Button Click上访问脚本的输出。我无法从Cocoa应用程序中找到运行python脚本的资源。
import Cocoa
class ViewController: NSViewController {
//sample code
@IBAction func printHello(button: NSButton) {
//Run python script and get output from script.
}
}