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?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)