Changing locale of UIDatePicker in Countdown Timer mode - ios

I have UIDatePicker in CountdownTimer mode and need to change the wording of hours and min to German locale. I tried both, to set locale to German (Germany) in storyboard and in code, but both failed and the app still shows default english words for hours and min.
timePicker.locale = Locale(identifier: "de")
When I configure locale on UIDatePicker in Date and Time mode, it correctly respects German locale and displays the date in german format. Any idea why locale does not change in Countdown timer mode? Thank you.

Thanks to Why UIActivityViewController doesn't display localized cancel string? post the solution also resolved the issue of localizing UIDatePicker in countdown timer mode, at least on iOS 11. Thank you.
Add this row into your info.plist:
And it also helps to correctly localize Cancel button of the system share sheet: UIActivityViewController - how to change the cancel button text.

I am mentioning here reply from APPLE that i got upon Technical support on this specific issue but unfortunately there is no support to this feature yet.
When running in the count down mode, UIDatePicker showns the hours and minutes to count down. In this context, the “hours” and “minutes” are not a format, thus not covered by locale;
Thing is that they did not mention any time line for support of this feature.

Related

24h UIDatePicker does not offer 24 hours in certain circumstances

In my app, users can pick a "duration". I am using a UIDatePicker with datePickerMode set to time for this.
In order to pick 0-24h, I set the date picker locale to e.g. NL like explained here.
Because I want to show the picker in a list, I use compact for the preferredDatePickerStyle
In order to make it easier for the user to pick a duration, I set minuteInterval to 5
Now, when using this on a device that has 12h time display in the iOS settings, this causes the expanded date picker to only offer hours from 1-12, instead of 0-23.
Interestingly, this problem does not occur when the device is set to 24h time display or I am using any other value for the minuteInterval (e.g. 10) or I am using a different preferredDatePickerStyle (e.g. inline)
Is this an iOS bug and is there any workaround?

UIDatepicker display future years with ' ---'

iOS UIDatepicker shows '---' for future years. How to achive this in iOS. It will show only till current year and after that it shows '---'. I seen this when we adding any contact in our iPhone contact app, where there is field to addBirth. You can see that.
Please see screen shot.
The UIDatePicker doesn't have option for this.
Available Picker modes: time, date, dateAndTime, countDownTimer.
You can set maximumDate value, so that date after that can't be selected using UIDatePicker.
If you need to fulfil the exact need, you have to create custom UIPickerView with multiple component and Manage all things. NB: This could be messy.

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 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];

iOS - Change Language for UIDatePicker by locale

I'm creating the app in "Herbrew" language. (Language of IPhone can be anything, but my app runs only in Herbrew).
In iOS for UIDatePicker, we have a property "locale" which will change the language that it is displaying. But in iOS5, the property is deprecated. How can I achieve it now?
Unfortunately, you cannot achieve this, not even with the calendar trick described by Martin Ulrich.
I've struggled with the same problem myself and after a long research, I found out the bitter truth: the only way to change the localization of the UIDatePicker is to change the device's language.
If the user will have the app's language as Hebrew, everything will be alright. If not, there's nothing you can do, except maybe create your own date picker. Sorry
You can set the calendar property of the UIDatePicker to [NSCalendar currentCalendar]

Resources