I would like to have an iOS date picker that allows the user to select the day of the week and time. For example: Wednesday 12:00. I do not need to show the month or day of the month as shown below. Does anyone know how easy it is to allow the user to set only the day of the week and time? Thanks!
In a standard iOS date box this is not possible. but if you still want this type of collector, then you need to use a simple collector and add logic to it, I mean to make it normal according to your requirement.
I do not think you can configure UIDatePicker to display weekly days. I think you can use UIPickerView and create your own date picker.
UIDatePicker
UIPickerView
Contact Igor answer in this question to find out how to configure UIPickerView .
if you want to select a day from the date picker, then write only
[dateFormat setDateStyle:NSDateFormatterFullStyle];