Skip to content

Instantly share code, notes, and snippets.

@bdittmer
Created January 30, 2013 00:05
Show Gist options
  • Save bdittmer/4669282 to your computer and use it in GitHub Desktop.
Save bdittmer/4669282 to your computer and use it in GitHub Desktop.
+ (NSDateFormatter *)utcDateFormatter {
if (nil == _utcDateFormatter) {
_utcDateFormatter = [[NSDateFormatter alloc] init];
[_utcDateFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"] autorelease]];
[_utcDateFormatter setFormatterBehavior:NSDateFormatterBehavior10_4];
[_utcDateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss zzz"];
[_utcDateFormatter setTimeZone:[NSTimeZone systemTimeZone]];
}
return _utcDateFormatter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment