I am trying to localised string.
In english i am getting like "Friday, Jun 26"
but in spanish its like "jueves, jun 25".
first letter is small. but I am trying to get just as English with first letter caps.
Bellow is my code.
let longDateFormatter = DateFormatter()
longDateFormatter.dateFormat = "EEEE, MMM d"
longDateFormatter.locale = Locale(identifier: "es")
is there any way to get date with first letter caps. Thanks for help/