告诉AppleScript构建XCode项目

告诉AppleScript构建XCode项目,第1张

概述以下是我想要的步骤: >启动xcode >打开一个特定的xcodeproj文件 >构建和调试它 >退出xcode 以下是我第一次尝试编写AppleScript的方法: tell application "Xcode" tell project "iphone_manual_client" debug end tell close project "iphon 以下是我想要的步骤:

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

以下是我第一次尝试编写AppleScript的方法:

tell application "Xcode"    tell project "iphone_manual_clIEnt"        deBUG    end tell    close project "iphone_manual_clIEnt"end tell

这只能在xcode打开此项目时有效.我希望只有在有必要的时候才能打开这个项目.

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

-chuan-

解决方法 我想我设法解决了.以下是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    quitend tell

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

总结

以上是内存溢出为你收集整理的告诉AppleScript构建XCode项目全部内容,希望文章能够帮你解决告诉AppleScript构建XCode项目所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1113276.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存