5
Ho il seguente codice che formatta la mia data e l'ora nella stringa del tipo:Come aggiungere le abbreviazioni ordinali Formato fino alla data In iOS, ad es. "Th", "ST"
Lunedi, 25 mese di ottobre il 2013 - 14:56:34
NSDate *today = [[NSDate alloc] init];
dateFormatter = [[NSDateFormatter alloc] init];
[self.dateFormatter setDateFormat:@"EEEE, MMMM dd YYYY - HH:mm:ss"];
NSString *currentTime = [self.dateFormatter stringFromDate: today];
self.timerLabel.text = currentTime.uppercaseString;
Funziona bene . Ma come faccio a mettere il "th" o "rd" o "st" in modo appropriato fino alla data cioè dopo il 25 nell'esempio sopra?
Esiste un modo localizzato per farlo? – keegan3d