문제

How to get NSArray of localised day-of-week names in IOS?

i.e. don't want to have to hardcode them in myself. Is there an easy way to get this from an IOS class? All I can think of is to write a method that steps through 7 days and then using the formatter output the Day of Week and collect these up

도움이 되었습니까?

해결책

It's as simple as this:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSLog(@"%@", [dateFormatter weekdaySymbols]); // or rather, whatever you
                                              // actually want to do with
                                              // the list
[dateFormatter release];

Or use shortWeekdaySymbols (for Mon, Tue, etc in English) or veryShortWeekdaySymbols (for M, T, etc) as you prefer.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top