Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm running automated application unit tests under a C.I. environment for iPhone apps and everything works fine using a command line such as;

xcodebuild -scheme "Tests" -configuration Debug -sdk iphonesimulator5.0

That's great, but I now want to force the iPhone simulator to launch in Retina mode, rather than the default standard mode.

I know I can toggle this with the hardware menu option, however I'm running this on a headless integration server so don't have that option.

What I'd like to do is pass a switch somehow on the command line that tells the simulator to launch in Retina mode.

I optimistically tried appending SimulateDevice="iPhone (Retina)" to the xcodebuild command, but that seems not to work.

Is this possible? I can't seem to find a way at the moment.

If it's not possible, is there an alternative approach I can take?

share|improve this question
Is your xcodebuild command actually launching the app in the simulator? Tell me how! – Andrew Wolfe Apr 9 '12 at 19:05
See gist.github.com/1365687 and lifeandcode.net/2011/12/… and longweekendmobile.com/2011/04/17/… for some of the references I followed – Roger Apr 10 '12 at 12:54

2 Answers

up vote 3 down vote accepted

You should use AppleScript to change the value of SimulateDevice in com.apple.iphonesimulator.plist.

Here is an example that does that after prompting the user to choose the desired device type. You can modify it to read the value from the command line or use "iPhone (Retina)" as a default value.

The following script changes the simulator device into a value from the command line:

on run argv

set selectedDevice to item 1 of argv as string

set thePListFolderPath to path to preferences folder from user domain as string
set thePListPath to thePListFolderPath & "com.apple.iphonesimulator.plist"
tell application "System Events"
    tell property list file thePListPath
        tell contents
            set value of property list item "SimulateDevice" to selectedDevice
        end tell
    end tell
end tell

end run

And you can execute it from the terminal using the command osascript:

osascript myScript.scpt "iPhone (Retina)"

Or

osascript myScript.scpt "iPhone"

Edit

You can modify that script to make it launch the Retina simulator by default:

set selectedDevice to "iPhone (Retina)"

set thePListFolderPath to path to preferences folder from user domain as string
set thePListPath to thePListFolderPath & "com.apple.iphonesimulator.plist"
tell application "System Events"
    tell property list file thePListPath
        tell contents
            set value of property list item "SimulateDevice" to selectedDevice
        end tell
    end tell
end tell

Finally note that changes to "SimulateDevice" take effect only when a new simulator is launched.

share|improve this answer
Liking the approach ... on Lion this doesn't work though. It looks like arch -i386 osacript ... will do the trick though. Now I'm getting script error: Expected “end” or “end tell” but found unknown token. (-2741) – Roger Mar 6 '12 at 12:49
Fixed that by replacing spaces with tabs ... – Roger Mar 6 '12 at 13:12
OK so I'm actually using the defaults write option as that was easier, but you absolutely set me on the right track, and I needed applescript for the restart, so I'm happy to accept this answer - many thanks for taking the time to expand on your answer. – Roger Mar 6 '12 at 13:51

Another approach looks like;

defaults write com.apple.iphonesimulator "SimulateDevice" '"iPhone (Retina)"'

However as with the applescript approach from sch, this doesn't seem to be quite working when used as part of the build phase. Still investigating ...

share|improve this answer
Neither seem to work as part of a run script, I'll try the restarting simulator bit though... but how do I do that from the command line? – Roger Mar 6 '12 at 13:34
Solved the restarting simulator with another script from here; stackoverflow.com/questions/5125243/… – Roger Mar 6 '12 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.