Skip to content

Instantly share code, notes, and snippets.

@mikeabdullah
Created September 24, 2013 14:13
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeabdullah/6685381 to your computer and use it in GitHub Desktop.
Save mikeabdullah/6685381 to your computer and use it in GitHub Desktop.
Build date for Cocoa apps
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"] autorelease]];
[formatter setDateFormat:@"MMM d yyyy"];
[formatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
NSString *string = @__DATE__;
NSDate *buildDate = [formatter dateFromString:string];
[formatter release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment