Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am able to store, retrieve, and remove values using NSUserDefaults. I couldn't succeed to find out where NSUserDefaults getting stored physically on iPhone? I guess it should be plist file but not sure. Does anyone know if its possible to see this values on iPhone physically?

Thanks.

share|improve this question

3 Answers

up vote 4 down vote accepted
  • Connect Your device to xcode
  • select Windows->Organiser
  • select you device
  • tap on your application
  • select applicationData tapping down list
  • tap down arrow and download that folder
  • open downloaded folder
  • Library -> Preferences -> appbundlename.plist
share|improve this answer
Exactly. Thanks! – AppleDeveloper Jul 12 '11 at 13:09

The physical path is rootOfApplication/Library/Preferences/com.yourcompany.appName.plist you can see there if you test it in simulator

share|improve this answer

NO, the content cannot be seen physically, all that gets stored in the memory of iphone. the sandbox environment of apple is very secure and therefore its not possible to view physically.

TNQ

share|improve this answer

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.