Is there a way to see what's been saved to NSUserDefaults directly? I'd like to see if my data saved correctly.
|
You can find the pList file for your app in the simulator if you go to: /users/your user name/Library/Application Support/iPhone Simulator/<Sim Version>/Applications This directory has a bunch of GUID named directories. If you are working on a few apps there will be a few of them. So you need to find your app binary:
Then go to the Library/Preferences directory in the GUID directory. So:
You should find a file that looks like:
Open this up in the pList editor and browse persisted values to your heart's content. |
|||||||||||
|
|
You can print all current NSUserDefaults to the log: Just keys:
Keys and values:
|
||||
|
|
|
you can check values for each key in array, returned by
|
||||
|
|
|
I sometimes use the following snippet to print out the location of my NSUserDefaults file when running in the simulator NSArray *path = NSSearchPathForDirectoriesInDomains( NSLibraryDirectory, NSUserDomainMask, YES); NSString *folder = [path objectAtIndex:0]; NSLog(@"Your NSUserDefaults are stored in this folder: %@/Preferences", folder); It yields the path to the preferences folder
Your NSUserDefaults file is located in the preferences folder and named according to your prefix and appliation name e.g.
I expect the same to be true for the actual device. |
|||
|
|
|
I keep a shortcut on my desktop to the simulator's folder where it keeps the apps, ie: /Users/gary/Library/Application Support/iPhone Simulator/User/Applications Sorted by most recent date, then just go into the most recent app folder Library/Preferences and view the file in the plist editor. |
|||
|
|
|
You could NSLog each value you set, like:
|
||||
|
|
|
I built this method based on Morion's suggestion for better presentation. Use it by calling
|
|||||||
|