I want to change format of month represent in my UIDatePicker. I tried:
self.datePicker = UIDatePicker()
self.datePicker.backgroundColor = .white
self.datePicker.datePickerMode = .date
let loc = Locale.init(identifier: "uk")
var calendar = Calendar.current
calendar.locale = loc
self.datePicker.calendar = calendar
After that, month representation suppose to be in ukranian, but it still in other language.
You should assign loc
to the date picker locale property:
let loc = Locale(identifier: "uk")
self.datePicker.locale = loc
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With