Search code examples
iphoneios-simulatorxamarin.iosmonodevelop

Bring iPhone Simulator to front of screen on build?


When I build using MonoDevelop using the MonoTouch framework it appears the iPhone Simulator always loads in the background, is there any way to bring this to the front instead of always having to click it in the dock to bring it up?

Can't find anything in preferences.


Solution

  • Include a compiled AppleScript in your build process:

    tell application "iPhone Simulator"
    activate
    end tell