Skip to content

Instantly share code, notes, and snippets.

@fousa
Created July 12, 2012 10:06
Show Gist options
  • Save fousa/3097159 to your computer and use it in GitHub Desktop.
Save fousa/3097159 to your computer and use it in GitHub Desktop.
Static Date Formatter
static NSDateFormatter *railsFormatter = nil;
if (railsFormatter == nil) {
railsFormatter = [[NSDateFormatter alloc] init];
[railsFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss'Z'"];
}
return [railsFormatter stringFromDate:self];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment