0
我想編寫一個AppleScript以在某個預定時間在模擬器上啓動我的項目。我正在使用下面的蘋果腳本,但它不會在我的模擬器上運行該項目。它退出模擬器,啓動XCODE,但不要在模擬器上運行項目,儘管目標已正確設置爲模擬器。我該怎麼辦?使用蘋果腳本運行模擬器構建
application "iPhone Simulator" quit
tell application "Xcode"
open "Users:abhinav:myProject:Code:client:src:test.xcodeproj"
tell project "test"
clean
build
run
end tell
end tell
application "iPhone Simulator" activate