I'm a bit confused. I'd like to implement some simple settings for my app. I was thinking of just creating a simple plist file. But now I see that there's something called "Settings.bundle" (that also has a plist in there but some other stuff too).

What I'm wondering, which one should I use? (I'm looking for the easiest way)

Thanks!!

link|improve this question

63% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I would suggest looking into NSUserDefaults to store basic app settings.

link|improve this answer
feedback

The settings bundle is for having settings that show up in the system Settings.app. You can use a plist (or easier, NSUserDefaults, which handles the plist for you) to store settings that you change within the app itself.

link|improve this answer
Settings.app saves changes to your NSUserDefaults, so it's the easiest thing to do. I'd suggest using Settings.bundle/NSUserDefaults, and moving to a custom settings view when it becomes necessary. – tc. Aug 17 '10 at 22:10
feedback

See the Displaying Application Settings section in the iOS Application Programming Guide.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.