I need to get all days of the week in their short mode, like this:
sun,mon,etc ..
I have tried this:
NSDateFormatter * df = [[NSDateFormatter alloc] init];
[df setLocale:[[NSLocale alloc] initWithLocaleIdentifier:[[NSLocale preferredLanguages] objectAtIndex:0]]];
[df setDateFormat:@"c"];
Which always gives the full names, how would you get the short ones?