Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a number between 1 and 7, which I want to turn into the user's locale's equivalent of Monday to Sunday. Can I do that and if so, how?

share|improve this question
You ever use search box? Answer is here: stackoverflow.com/questions/5591612/… – delirus Sep 7 '11 at 7:58
3  
(a) be nice. (b) that's getting it from a date, not a day number. – Simon Sep 7 '11 at 8:52

2 Answers

up vote 4 down vote accepted

An NSDateFormatter can give you the list of names:

NSDateFormatter * df = [[NSDateFormatter alloc] init];
[df setLocale: [NSLocale currentLocale]];
NSArray * weekdays = [df weekdaySymbols];

Which you can then index like any other array [weekdays objectAtIndex:dayIdx]; Be aware, however, that the first weekday may differ by locale; exactly how it may vary (along with many other things about NSCalendar) is not particularly well-explained in the docs.

share|improve this answer
NSArray *weekdaySymbols = [[NSDateFormatter alloc] weekdaySymbols];

You can use one of {weekdaySymbols, shortWeekdaySymbols, veryShortWeekdaySymbols}

share|improve this answer
[NSLocale currentLocale] is not needed. – ChangUZ Sep 8 '11 at 5:20
2  
...but you should probably initialize your NSDateFormatter before calling weekdaySymbols... [[[NSDateFormatter alloc] init] weekdaySymbols] :) – Rich Pollock May 6 '12 at 7:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.