mkelitz
mkelitz
+1 same need here.
Changing BDate.swift getMonths() class to the following fixes the issue class func getMonths() -> [String]{ //return ["JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC"] let formatter = DateFormatter() let monthComponents = formatter.shortMonthSymbols return monthComponents! } As it...
In addition to the fix, now the months are shown in the language used by the user in the device (and not only in English like before)
Great Thanks.