Skip to content

Instantly share code, notes, and snippets.

@thechrisoshow
Created October 22, 2009 20:41
Show Gist options
  • Save thechrisoshow/216281 to your computer and use it in GitHub Desktop.
Save thechrisoshow/216281 to your computer and use it in GitHub Desktop.
Formatting a date with cocoa - can it really require this many lines of code??
NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
[outputFormatter setDateFormat:@"EEEE MMMM d"];
NSString *newDateString = [outputFormatter stringFromDate:myDate];
[outputFormatter release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment