So ideally I would like to use the UIDatePicker to display dates. But instead of displaying a specific day (for the leftmost component) like Feb 2 I would like it to display a custom value like i.e Peter's birthday.
Is there a way to achieve this with using the UIDatePicker? Or do I have to create a UIPickerView and feed it with a datasource of dates and my custom values?
If so how would I go about feeding it with dates (what would my dataSource look like)?
UIDatePicker only allows you do pick dates in som predefined styles like date,time,date+time etc…, so you would have to go with a UIPickerView.