Reputation: 3854
I would like to create a settings view within my app that so many apps today have implemented. In the past, I have created a settings bundle which the users can modify there settings for my app by going into system settings.
My question is can I implement the .plist settings from the settings bundle into an ordinary view within my app? And if so, how is this done?
Thank you in advance
Upvotes: 2
Views: 9788
Reputation: 4085
I guess NSUserDefaults would be gr8 option if you not saving large amount of data.
Upvotes: 0
Reputation: 14427
The two major options you got are:
I personally like having settings within the app for most cases. Legal statements, copyright notices and settings that won't be touched but once are probably better off using the SettingsBundle, but for settings that are updated or changed often should reside inside the app in my opinion.
Upvotes: 4
Reputation: 4131
http://www.inappsettingskit.com/ does what you want. The example that comes with the source code will be great resources to look at.
Upvotes: 6