gpt4 book ai didi

xcode - 告诉 AppleScript 构建 XCode 项目

转载 作者:行者123 更新时间:2023-12-03 23:29:09 28 4
gpt4 key购买 nike

以下是我想要的步骤:

  • 启动 xcode
  • 打开一个特定的 xcodeproj 文件
  • 构建和调试它
  • 退出 xcode

  • 以下是我第一次尝试编写 AppleScript:
    tell application "Xcode"
    tell project "iphone_manual_client"
    debug
    end tell
    close project "iphone_manual_client"
    end tell

    这仅在 xcode 打开此项目时有效。我希望只有在必要时才打开该项目。

    任何 AppleScript 大师都可以指出我正确的方向吗?谢谢。

    -传-

    最佳答案

    我想我设法解决了它。以下是 AppleScript:

    tell application "Xcode"
    open "Users:chuan:Desktop:iphone_manual_client:iphone_manual_client.xcodeproj"
    tell project "iphone_manual_client"
    clean
    build
    (* for some reasons, debug will hang even the debug process has completed.
    The try block is created to suppress the AppleEvent timeout error
    *)
    try
    debug
    end try
    end tell
    quit
    end tell

    路径的格式必须是“:”而不是“/”。现在唯一的问题是在调试控制台完成其工作后,AppleScript 似乎“挂起”,好像在等待某事发生。我需要对 AppleScript 进行更多研究以了解脚本有什么问题。

    关于xcode - 告诉 AppleScript 构建 XCode 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1007082/

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