0

我想使用 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".

我究竟做错了什么?

4

1 回答 1

2

这是因为您的项目未命名为" EightQueens.xcodeproj "

而不是
tell project "EightQueens.xcodeproj"
这样做:
tell project "EightQueens"

于 2011-12-28T14:17:41.730 回答