This code;
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; NSArray *weekdays = [dateFormatter weekdaySymbols];
will give you business days in the current locale of users.
If you want a specific locale to set the desired language to dateFormatter .
Creating an NSDateFormatter expensive, so create one and reuse it.
source share