К сожалению, поддержка AppleScript в XCode сильно нарушена, и глагол run не поддерживается. Однако, если вы используете AppleScript, вы можете запустить его, используя системные события в коде, как показано ниже:
tell application "Xcode"
tell project "test"
activate
end tell
end tell
tell application "System Events"
tell process "Xcode"
click menu item "Run Without Building" of menu 1 of menu item "Perform Action" of menu "Product" of menu bar item "Product" of menu bar 1
end tell
end tell