vote up 1 vote down star

My application has a need to let the user choose a date from a list of dates conforming to a certain pattern. For instance, they may need to choose a monday from a list Monday's for a month. Is there a way to get a UIDatePicker to limit date choices to a certain subset or should I just use a UIPickerView?

flag

You might want to add some of the tag information into the title. That way when people scan the question list it stands out more. Good luck! – Craig Sep 11 '08 at 15:44

1 Answer

vote up 3 vote down check

You cannot limit which dates are selectable in a UIDatePicker. You could change the date when the value changed event is sent, but since the user cannot tell which dates are "good" and which are not, it's a bad UI choice to do so.

Use a UIPickerView of your own making instead.

link|flag

Your Answer

Get an OpenID
or

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