问题
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.
回答1:
You should assign loc
to the date picker locale property:
let loc = Locale(identifier: "uk")
self.datePicker.locale = loc
来源:https://stackoverflow.com/questions/47056329/swift-change-date-picker-language