I have a SQLite DB that I'm using to store app data, and I could do with taking a look inside it to debug a problem I'm having - but where does the iPhone Simulator store its data, typically?

link|improve this question

feedback

7 Answers

up vote 31 down vote accepted

Found it:

~/Library/Application Support/iPhone Simulator/User/
link|improve this answer
thanks, I wanted to know this too. – John Ballinger Jul 10 '09 at 10:42
feedback

Accepted answer is correct for SDK 3.2 - SDK 4 replaces the /User folder in that path with a number for each of the legacy iPhone OS/iOS versions it can simulate, so the path becomes:

~/Library/Application Support/iPhone Simulator/[OS version]/Applications/[appGUID]/

if you have the previous SDK installed alongside, its 3.1.x simulator will continue saving its data in:

~/Library/Application Support/iPhone Simulator/User/Applications/[appGUID]/

link|improve this answer
feedback

On Lion the Users/[username]/Library is hidden.

To simply view in Finder, click the the 'Go' menu at the top of the screen and hold down the 'alt' key to show 'Library'.

Click on 'Library' and you can see your previously hidden library folder.

Previously advised:

Use

chflags nohidden /users/[username]/library

in a terminal to display the folder.

link|improve this answer
then after that you can find it at: ~/Library/Application Support/iPhone Simulator/[OS version]/Applications/[appGUID]/ – Rafael Moreira Oct 31 '11 at 2:00
feedback

In iOS 5 :

/Users/[User Name]/Library/Application Support/iPhone Simulator/5.0/Applications/[AppGUID]/

link|improve this answer
feedback

if anyone is still experiencing this problem in lion, there is a great article with 19 different tips to view your ~/Library dir. find the article by Dan Frakes here http://www.macworld.com/article/161156/2011/07/view_library_folder_in_lion.html

Remember the directory to the simulator is given below

~/Library/Application Support/iPhone Simulator/User/

link|improve this answer
feedback

It gets stored in an iPhone Simulator folder in your ~/Library folder. I forget exactly what the folder was called.

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.