I just wrote a few values to my user preferences using NSUserDefaults
. Is there a way I can go in and examine the persisted preferences file manually (when running on the simulator) to make sure they were written properly?
Asked
Active
Viewed 146 times
2 Answers
0
NSString *text = [[NSUserDefaults standardUserDefaults] stringForKey:@"ValueName"]; NSLog(@"%@",text);

Taimur Ajmal
- 2,778
- 6
- 39
- 57