我想使用AppleScript在iOS模拟器中运行iPhone项目,所以我写了这段代码:
tell application "Xcode"
open "IAPPS:Xcode 4:EightQueens:EightQueens.xcodeproj"
tell project "EightQueens.xcodeproj"
clean
build
try
debug
end try
end tell
quit
end tell
但它给了我这个错误:
Xcode got an error: Can’t get project "EightQueens.xcodeproj".
我做错了什么?
答案 0 :(得分:2)
这是因为您的项目未命名为“EightQueens。 xcodeproj ”。
而不是tell project "EightQueens.xcodeproj"
tell project "EightQueens"