Skip to content

Instantly share code, notes, and snippets.

@fousa
Created July 12, 2012 10:08
Show Gist options
  • Save fousa/3097170 to your computer and use it in GitHub Desktop.
Save fousa/3097170 to your computer and use it in GitHub Desktop.
GCD Date Formatter
static NSDateFormatter *dateFormatter = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
dateFormatter = [NSDateFormatter new];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
});
return [dateFormatter dateFromString:self];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment