2013-02-12 5 views
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?

risposta

5
NSDateFormatter *format = [[NSDateFormatter alloc] init]; 
[format setDateFormat:@"MMMM dd"]; 

NSDate *now = [[NSDate alloc] init]; 

NSString *dateString = [format stringFromDate:[now dateByAddingTimeInterval:(-60*60*24*10)]]; 
NSMutableString *tempDate = [[NSMutableString alloc]initWithString:dateString]; 
int day = [[tempDate substringFromIndex:[tempDate length]-2] intValue]; 
switch (day) { 
    case 1: 
    **case 21: 
    case 31:** 
     [tempDate appendString:@"st"]; 
     break; 
    case 2: 
    **case 22:** 
     [tempDate appendString:@"nd"]; 
     break; 
    case 3: 
    **case 23:** 
     [tempDate appendString:@"rd"]; 
     break; 
    default: 
     [tempDate appendString:@"th"]; 
     break; 
} 
NSLog(@"%@",tempDate); 
+10

Esiste un modo localizzato per farlo? – keegan3d