gpt4 book ai didi

swift - 将 CLI 命令添加到 Cocoa 应用程序中?

转载 作者:行者123 更新时间:2023-12-03 16:26:42 25 4
gpt4 key购买 nike

我正在寻找一种将命令(带参数)从命令行工具发送到正在运行的 Cocoa 应用程序的方法。这可能吗?

如果我的 Cocoa 应用程序已打开并正在运行,我希望它能够从终端接收基本事件。如何在 CLI 目标和 Cocoa 目标之间进行通信?

我发现的唯一方法是使用 AppleScript 并向应用程序添加脚本功能。这是唯一的出路吗?

最佳答案

要从终端向您的应用程序发送命令,您可以使用 URL 方案。

在info.plist中注册一个方案(“yourScheme”是本例中的方案标识符),然后监听事件:

NSAppleEventManager.shared().setEventHandler(self, andSelector: #selector(handleGetURLEvent(event:withReplyEvent:)), forEventClass: AEEventClass(kInternetEventClass), andEventID: AEEventID(kAEGetURL))

并获取事件的内容

@objc func handleGetURLEvent(event: NSAppleEventDescriptor!, withReplyEvent: NSAppleEventDescriptor!) {
if let text = event.paramDescriptor(forKeyword: AEKeyword(keyDirectObject)) {
// you may want to filter the commands here
if text.contains("yourScheme://doStuff") {

} else if ...
}
}

终端示例:

$ open "yourScheme://doStuff"
$ open "yourScheme://doSomethingElse"

关于swift - 将 CLI 命令添加到 Cocoa 应用程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42853260/

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