is there anyway to add new entries to the Settings bundle during run time?

We would like to be able to turn-off and on options depending on what information the user have entered. Seems like all Apple documentation talks about modifying preferences, but not the Setings page itself.

thanks!

link|improve this question
it depends on which preferences you wanna change... you can surely edit some of them, as the "Status bar is initially hidden" with the code -> [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; – meronix Feb 7 '11 at 14:39
feedback

1 Answer

up vote 2 down vote accepted

The settings.bundle is read-only. You can NOT modify it during run time.

If you want to be able to change settings during run time, you have include the app settings from within the app.

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.