gpt4 book ai didi

ios - 通过 applescript(osascript) 运行 Xcode

转载 作者:行者123 更新时间:2023-11-29 10:21:42 32 4
gpt4 key购买 nike

  • OSX 优胜美地
  • Xcode 7.1

我正在通过 vim 或 atom 开发 iOS。但有件事我不喜欢。必须按 command + tab 然后切换到 Xcode 才能运行。

我发现这个脚本可以解决这个问题。但效果不佳。

tell application "Xcode"
activate
tell application "System Events"
perform (keystroke "r" using command down)
end tell
end tell

或另一个 applescript。它也不起作用。

tell application "Xcode"
activate

set targetProject to project of active workspace document
if (build targetProject) is equal to "Build succeeded" then
launch targetProject
end if
end tell

PLZ 帮助。

最佳答案

第一个脚本几乎是正确的,只是perform语法错误

activate application "Xcode"
tell application "System Events"
tell process "Xcode"
keystroke "r" using command down
end tell
end tell

关于ios - 通过 applescript(osascript) 运行 Xcode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34780650/

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