Objective C - Get localised Weekend and Weekday names?

Viewed 547

What I'd like is a way of getting separated weekday and weekend names in iOS (localised). I understand that there is NSDateformatter's "weekdaySymbols" method, but this doesn't distinguish between weekend and weekday.

The problem I am facing is that different localisations may place their "weekdaySymbols" differently, starting on Monday instead of Sunday for example, so I can't guarantee what index of the array weekend days will appear.

How can I do what I'd like?

1 Answers
Related