How to modify UIDatePicker to get rid of era being shown? - ios

When I set UIDatePickder calendar type to Arabic calendar like below
NSCalendar *hijriQamariCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSIslamicCivilCalendar];
[self.resultCalendarOutlet setCalendar:hijriQamariCalendar];
I get era also displayed in the UIDatePikcer. I am looking for a way to either have the era removed from the UIDatePicker from being displayed or customize its value/text.
UIDatePicker with Arabic Calendar showing era:
Please see the given images. I am not sure if this is possible first. However, UIDatePicker for Gregorian calendar doesn't display any era information.
UIDatePicker with Gregorian Calendar - No era :
which is fine for me.

Related

islamicUmmAlQura UIDatePicker is not working properly

I am using islamicUmmAlQura UIDatePicker while developing iOS application as shown in the following
picture
and I have TWO problems summarised as follows:
1- The date that appears in the text field is gregorian while my UIDatePicker is islamic (Hijri) see figure
2- Sometimes the days in the Textfields are above normal! see figure
I have an extension on github to convert dates. Have a look. mine is persian date so you just need to replace the below code with mine inside the extension:
datePicker.calendar = Calendar(identifier: .islamicUmmAlQura)
[https://github.com/Fridday/PersianDatePicker][1]

How to DatePicker with Year Month day time

How to get DatePicker |Year|Day Date Month|Time Min|Second|AM PM| ?
Default DatePicker Showing its showing |Day Date Month | Min | Seconds|
Date picker is a very high level component and does not allow explicit setting of display in any way. There are properties you can play around with such as datePickerMode and locale. For your case I guess you should find a correct locale.
This is not advised though. The thing is that locale is set automatically or it should be set to whatever makes sense to user which world-wide depends on the user. If you override this functionality you will most likely confuse users.
Anyway if you can't get the result you want with date picker you will have to user a normal picker view and manage sections and rows yourself.
You can get some how close to your desired requirement by setting DatePicker's datePickerMode property
myDatePicker.datePickerMode = .dateAndTime
see the more available datepicker mode .here
UIDatePicker takes device Time format. If you have 24 hour Date format selected in your device, the UIDatePicker will not show AM/PM and show the time in 24hr. format. So you have to change the Time format of the device to 12 hour format. We can not set the time format of the UIDatePicker.

How to Display UIDatePicker Dates in Hindi with English Numbers/Digits

I want to display date in date pickers in Hindi language but the digits in English.
example
I was able to get the screenshot by setting the language of the device to Hindi and digits to English.
But I want to achieve it programatically.
I tried:
UIDatePicker *datePicker;
[datePicker setLocale:[[NSLocale alloc] initWithLocaleIdentifier:#“hi”]];
//or #“hi_IN”
but what I get is this
So, how can I set the digits to be in English?

How to have this date picker mode?

The reminders app uses this date picker mode of "wed, april 20" and the hours, but in my app, I'd like to have only the "wed, april 20" format. I'm using the normal Date mode (date - month - year) right now, but as it is not showing the date's name its a bit confusing. Is this a normal mode that I can use (the reminders app mode)?
Taking the flow of the question, I also wanna ask something: to set the date picker as a text field's input view I need to create an action of the text field and use textField.inputView = datePicker
Right?
Reply to the questions you know, or both, thanks in advance!
The date format of the UIDatePicker can only be set using it's mode property and it doesn't allow a lot of flexibility, like displaying a week day. If you want to achieve this you either have to make your own date picker using a UIPickerView, or find some of the third-party components available online.
You can change datePicker mode as
[picker setDatePickerMode:UIDatePickerModeDateAndTime];

datePicker with maximum year current year

I am developing an iPhone app where user can save Birthdays along with other data.
For Birthday I am trying to add a UIDatePicker that shows date, month and year. for the year I want to set the picker maximum range to current year and after that an empty slot (just like the contact/phone app - add birthday option).
Is there anyway I can do that using UIDatePicker or do I have to use custom picker.
You can set the property maximumDate with current Date object. It will not allow the user to select any date beyond today. However it will not show the empty slots but grayed out slots. If user will try to select it, picker will again set with max possible date.
datePicker. maximumDate = [NSDate date];

Resources