Skip to content

Instantly share code, notes, and snippets.

@ariok
Created November 29, 2013 18:18
Show Gist options
  • Save ariok/7709855 to your computer and use it in GitHub Desktop.
Save ariok/7709855 to your computer and use it in GitHub Desktop.
Get the month name from its numeric representation
// Return the month name
+ (NSString*)monthName:(NSInteger)month{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.locale = [NSLocale currentLocale];
NSString *monthName = [[formatter monthSymbols] objectAtIndex:(month - 1)];
return monthName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment