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.

So I was reading this: http://stackoverflow.com/questions/2228302/storing-iphone-application-settings-in-app which seems simple enough.

However, where/how would I define the initial settings?

So for instance I have a Country setting: UK or USA. When the app is first installed/opened I want it to automatically know/set NSUserDefaults to UK.

I hope this is clear ha.

Tom

share|improve this question

1 Answer

up vote 1 down vote accepted

You can use the -registerDefaults: method to set up the "default defaults":

http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/UserDefaults/Tasks/UsingDefaults.html#//apple_ref/doc/uid/20000719-BAJFBAAH

share|improve this answer
this seems ok, except I'm worried that if a user closes the app and then reopens it will it "reset" the settings? ie: if a user installs the app and changes their country to US I want it to remember that indefinitely. Will this work for that? – Thomas Clayson Aug 25 '10 at 15:01
1  
I find the nomenclature in the API confusing. Registering defaults means providing actual default values. Anything you store in "standardUserDefaults" though should take precedence over the default-default. It's easy enough to test to reassure yourself. :) – Ben Zotto Aug 25 '10 at 15:53

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.