如何使用Applescript构建和运行Xcode?

如何使用Applescript构建和运行Xcode?,第1张

概述我试图让 Xcode使用Applescript构建运行我的项目.这是与 How to build & run Xcode with Applescript?相同的问题,但我认为答案可能已过时,因为它在我的机器上不起作用.我明白了: execution error: Xcode got an error: The specified object is a property, not an ele 我试图让 Xcode使用Applescript构建和运行我的项目.这是与 How to build & run Xcode with Applescript?相同的问题,但我认为答案可能已过时,因为它在我的机器上不起作用.我明白了:

execution error: Xcode got an error: The specifIEd object is a property,not an element. (-10008)

我也尝试过以下方法:

tell application "Xcode"    build project "MyProject"end tell

但它没有建立,只是返回“缺失值”.

(使用Xcode 4.0.1,OS X 10.6.8)

尝试在Xcode中使用Applescript时遇到了很多麻烦;我找不到任何实际的文档(除了Xcode字典,这是非常简洁的),只是似乎没有用的示例.任何帮助,将不胜感激.

解决方法 我打算冒昧地猜测这是Apple的一个不完整的实现.字典表明构建应该返回一个值,但不返回任何内容,Xcode什么也不做.以下代码完全符合字典,但它也不起作用.

tell application "Xcode"    set theProject to project 1    set theBuildConfigType to build configuration type 2 of theProject -- "DeBUG"    set projectBuilt to build theProject using theBuildConfigType without static analysis and transcriptend tell

这里仅供参考,是每个脚本调试器的语法:

set theResult to build reference ¬     static analysis boolean ¬     transcript boolean ¬     using build configuration type
总结

以上是内存溢出为你收集整理的如何使用Applescript构建和运行Xcode?全部内容,希望文章能够帮你解决如何使用Applescript构建和运行Xcode?所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存