Skip to content

Instantly share code, notes, and snippets.

@looping
Last active August 29, 2015 13:58
Show Gist options
  • Save looping/10115894 to your computer and use it in GitHub Desktop.
Save looping/10115894 to your computer and use it in GitHub Desktop.
+ (NSDateFormatter *)dateFormatter;
+ (NSDateFormatter *)dateFormatter {
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.locale = [[NSLocale preferredLanguages] objectAtIndex:0];
dateFormatter.dateFormat = @"yyyy-MM-dd'T'HH:mm:ss'Z'";
return dateFormatter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment