IOS Date Picker with day of week instead of full date

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!

enter image description here

+4
source share
3 answers

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.

+2
source

I do not think you can configure UIDatePicker to display weekly days. I think you can use UIPickerView and create your own date picker.

Contact Igor answer in this question to find out how to configure UIPickerView .

+2
source

if you want to select a day from the date picker, then write only

 [dateFormat setDateStyle:NSDateFormatterFullStyle]; 
+1
source

All Articles