Skip to content

Instantly share code, notes, and snippets.

@ariok
Last active December 30, 2015 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ariok/7769631 to your computer and use it in GitHub Desktop.
Save ariok/7769631 to your computer and use it in GitHub Desktop.
Get an array with months names
- (NSArray*)monthsNames{
if (!_monthsNames) {
NSDateFormatter * df = [[NSDateFormatter alloc] init];
[df setLocale:[[NSLocale alloc] initWithLocaleIdentifier:[[NSLocale preferredLanguages] objectAtIndex:0]]];
_monthsNames = [df monthSymbols];
}
return _monthsNames;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment