我想使用 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".
我究竟做错了什么?