Skip to content

Instantly share code, notes, and snippets.

@gabriel
Created July 1, 2009 08:54
Show Gist options
  • Save gabriel/138689 to your computer and use it in GitHub Desktop.
Save gabriel/138689 to your computer and use it in GitHub Desktop.
NSDateFormatter *rfc1123DateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[rfc1123DateFormatter setFormatterBehavior:NSDateFormatterBehavior10_4];
[rfc1123DateFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease]];
[rfc1123DateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
[rfc1123DateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss zzz"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment