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 using NSUserDefaults in my app and I am unclear about how NSUserDefaults behave with regard to multi-tasking. Currently I create my NSUserDefaults from a settings.plist file in my project the first time the app is installed and launched. Successive app launches rely solely on NSUserDefaults.

Question: do NSUserDefaults persist even if the user discards the app icon from the multi-tasking dock. Note here I do not mean they have de-installed the app. Just removed it from multi-tasking.

Thanks,
Doug

share|improve this question

2 Answers

up vote 1 down vote accepted

NSUserDefaults will persist in that case as long as they have been synchronized using the synchronize method.

share|improve this answer
Cool. Thanks for this. – dugla May 2 '12 at 13:35

NSUserDefaults data does persist after the app has been removed from multitasking.

See link

http://stackoverflow.com/a/4771560/716216

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.