为什么我的AppleScript无法获得我的Xcode项目?

时间:2011-12-28 11:59:03

标签: iphone ios-simulator applescript applescript-objc

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

我做错了什么?

1 个答案:

答案 0 :(得分:2)

这是因为您的项目未命名为“EightQueens。 xcodeproj

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