vote up 0 vote down star

I'm working on a very simple iPhone app, that in the end will have maybe 3 or 4 settings.

Ideally I'd like to use the Settings app provided for free in the SDK.

One of the settings I'd like the user to be able to enter is their date of birth, however there doesn't seem to be a way to prompt the user for a date in the Settings app.

Aside from writing a custom settings page within my app, is there any other options?

flag

2 Answers

vote up 1 vote down check

The only way using the default settings is to use one or more textfields, and to parse the user's input to build a NSDate object.

link|flag
Thanks, that's a good idea. – Michael Sharek Jul 7 at 15:07
vote up 2 vote down

Take a look at UIPickerView to allow the user to "dial in" values that correspond to a day, month, and year.

EDIT: Okay, thanks for clarifying. Perhaps take a look at the PSMultiValueSpecifier key and use its multi-value selectors for day, month and year selections.

Look at the tutorial section of the Application Preferences document for help on this, specifically the "Experience Level" portion.

link|flag
What I'm after is a way to display one of those in the Settings system application. – Michael Sharek Jul 7 at 15:06

Your Answer

Get an OpenID
or

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