where in my machine is the iPhone simulator installed? Been trying to find out where a test application I run in the simulator is stored at. Also trying to find out when I run the default "Photos" application, where are the photos stored?

Thank you, Tee

link|improve this question

45% accept rate
feedback

5 Answers

up vote 21 down vote accepted

Simulator: ~/Library/Application Support/iPhone Simulator/

You can browse simulator files from that directory in Mac OS X.

link|improve this answer
1  
That's not the location of the simulator, but the data files, which seems to be the OP's intent. – Ben Alpert Oct 14 '09 at 17:40
Yes. The directory I posted is what he/she is looking for. He/She'll find the test application he/she ran somewhere in that folder. – Pablo Santa Cruz Oct 14 '09 at 17:42
3  
You can use ~ in the path instead of /Users/INSERT_YOUR_USER_HERE, so it becomes: ~/Library/Application Support/iPhone Simulator/ – progrmr Nov 30 '11 at 15:05
1  
I took the liberty of adjusting the path with ~ like progrmr suggested. – Besi Mar 16 at 3:43
feedback

The actual Simulator application itself is located at /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator

link|improve this answer
feedback

Changes since Xcode 4.3.1

Please note that the new version of Xcode is now available on the Mac App Store. Hence all the stuff that used to come with an installer is now packaged into Xcode.app.

Therefore the iOS Simulator binary is located here:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/

The Apps installed in the simulator along with other configuration files are still here:

~/Library/Application Support/iPhone Simulator/

Here is an extract from the current release notes of Xcode 4.3.1

What's new in Xcode 4.3.1

Xcode is now distributed as an application, rather than as an installer. This change enables Xcode to be updated directly from the Mac App Store.

link|improve this answer
feedback

In X-Code 4.2
The Photos of the iPhone simulator are stored in

/Users/user_name/Library/Application Support/iPhone Simulator/5.0/Media/DCIM/100APPLE
link|improve this answer
feedback

To find the most recent install of your application in the simulator, you can use this command:

find "/Users/$USER/Library/Application Support/iPhone Simulator" -type d -name 'YourAppName.app' -print0 | xargs -0 ls -td | head -1

Don't forget to replace YourAppName with the name of your app!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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