I am working on adding in a settings bundle for my application as a cheap way of getting a GUI on my preferences. Is it possible to launch this from a button in my application or will my users always have to access it manually via the built in settings application?
|
3
|
|
|
|
|
|
They may have to go to the settings application, depending on how you do it. See this document, the Applications Preferences section. Here's the relevant section from the introduction:
|
||
|
|
|
|
I just saw the Aka-aki app take me directly to the Settings app's push notification screen. It did this the first time I launched it. So it must be possible. :) |
||
|
|
|
|
Answered my own question: You can indeed use the NSUserDefaults for saving your own applications preferences without having to integrate with the system settings. For example, my app is a Utility app with a small UI for a couple of settings on the FlipSide (the view the user gets to when pressing the "i" button). Note that I found this information from two sources.
Here are the methods in LevelAppDelegate.m that load the preference when the application starts, and saves it when it terminates:
I guess, however, that the proper answer to the original question is:
In either case you can use the NSUserDefaults for the actual persistence. |
||
|
|
|
I read this documentation too - but I'm confused: Say I do indeed have a small utility unsuited to the full system Settings treatment, how do I persist my settings? Can I still use the same NSUserDefaults code? (in Accessing Your Preferences from the same doc as above) Is there some other simple way to store application preferences in a resource file? (I'm talking about one or two booleans and float backed by a slider - no need for database storage here) |
||
|
|
|
|
No, you can't--they'll have to exit your app and launch settings. It's a pain, and as stated above, a design decision you'll have to make. |
||
|
|
