gpt4 book ai didi

macos - Xcode 扩展 + Mac 助手应用程序 + 启动参数?

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

注意:这里似乎存在类似的问题:Launch Helper Application with Launch Arguments in the Sandbox但我在下面提供了一个更全面的示例及其源代码。

简短的前言:

我想编写一个 Xcode 源代码编辑器扩展(Xcode 8 中的新功能),当触发时,启动我正在编写的配套 Mac 应用程序,并将用户在查看时正在查看的源文件的行传递给 Mac 应用程序触发了扩展。

然后,辅助 Mac 应用程序将为用户提供一个用于执行其编辑功能的界面。当用户完成更改后,他们按下某种“保存”或“提交”按钮,然后更改会传播回 Xcode 扩展,然后传播回原始源文件本身。

到目前为止我所拥有的:

我已经为我的 Mac 助手应用程序创建了一个简单的 Mac 应用程序。它当前所做的就是在其应用程序委托(delegate)中的 applicationDidFinishLaunching(...) 实现中,尝试构建传入启动参数的字符串,并将该字符串显示为警报的消息正文。请参阅下文(请注意,我尝试使用 ProcessInfo.processInfo.arguments 以及 CommandLine.arguments):

func applicationDidFinishLaunching(_ aNotification: Notification) {  

let args = ProcessInfo.processInfo.arguments

var argString = ""
for arg in args {
argString += ", \(arg)"
}

let alert = NSAlert()
alert.addButton(withTitle: "OK")
alert.messageText = argString
alert.runModal()

}

我创建了一个相当样板的 Xcode 扩展,当通过 Perform(with ...) 函数调用时,会启动我的配套 Mac 助手应用程序。我尝试了多种方式启动帮助应用程序,包括:

使用 NSWorkSpace 的 launchApplication(at: options: configuration:) :

class SourceEditorCommand: NSObject, XCSourceEditorCommand {  

func perform(with invocation: XCSourceEditorCommandInvocation, completionHandler: @escaping (Error?) -> Void ) -> Void {

defer {
completionHandler(nil)
}

guard let url = NSWorkspace.shared().urlForApplication(withBundleIdentifier: "com.something.TestMacApp") else {
print("Couldn't find URL")
return
}

let options: NSWorkspaceLaunchOptions = NSWorkspaceLaunchOptions()

var configuration: [String: Any] = [String: Any]()
configuration["foo"] = "bar"
configuration[NSWorkspaceLaunchConfigurationArguments] = ["foobar"]
configuration[NSWorkspaceLaunchConfigurationEnvironment] = ["innerFoo" : "innerBar"]

do {
try NSWorkspace.shared().launchApplication(at: url, options: options, configuration: configuration)
} catch {
print("Failed")
}

}

}

使用自定义 Process 实例运行 bash 命令,尝试“open”和“fork”:

class SourceEditorCommand: NSObject, XCSourceEditorCommand {  

func perform(with invocation: XCSourceEditorCommandInvocation, completionHandler: @escaping (Error?) -> Void ) -> Void {

defer {
completionHandler(nil)
}

runCommand(command: "open -b com.something.TestMacApp --args --foo=\"bar\"")

}

func runCommand(command: String) {
let task = Process()
task.launchPath = "/bin/sh"
task.arguments = ["-c", command]
task.launch()
}

}

问题

我已存档/导出 Mac 助手应用程序并将其放入“应用程序”文件夹中。当我构建并运行 Xcode 扩展并对其进行测试时,辅助 Mac 应用程序成功启动,但它从未在 applicationDidFinishLaunching(...) 中获取自定义启动参数。

我读过很多地方,包括 NSWorkSpace 配置选项常量键的文档:https://developer.apple.com/reference/appkit/nsworkspacelaunchconfigurationarguments “此常量不适用于沙盒应用程序。”

当我从终端运行相同的 bash 时:

open -b com.something.TestMacApp --args --foo="bar"

帮助器应用程序成功读取传递的 --args 并将其显示在警报中。我担心由于应用程序沙箱,这根本不可能,但我希望还有另一个我缺少的解决方案。如果可能的话,其他一些替代方法也可行:

  1. 如果可以让 Xcode 扩展本身有一个接口(interface),而不是辅助 Mac 应用程序,那么问题就可以解决。但我认为这是不可能的。

  2. 我也许还可以启动辅助 Mac 应用程序,然后在启动后与其进行通信,尽管我再次认为沙盒问题可能会发挥作用。

就其值(value)而言,我主要是一名 iOS 开发者。

感谢您的帮助,

  • 亚当·艾斯菲尔德

最佳答案

首先,你这样做是错误的。启动容器应用程序的正确(如苹果所说的那样)方法是执行以下操作:

  1. 在容器应用程序的 Info.plist 中,输入类似于以下内容的内容(将 com.cannasoftware.RoboDocument 更改为适当的应用程序名称,将 robodocument007 更改为适合您产品的字符串):

    enter image description here

  2. 在您的插件代码中使用以下代码来启动应用程序:

    let customurl = NSURL.init(string: "robodocument007://")
    NSWorkspace.shared().open(customurl as! URL)
  3. 使用标准的进程间通信在应用程序和插件之间进行聊天(DistributedNotificationCenter 在这里效果很好)。

这不像使用启动参数那么简单或微不足道,但我认为您会对结果感到更满意。

关于macos - Xcode 扩展 + Mac 助手应用程序 + 启动参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40333600/

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