Revisions

gist: 216281 Download_button fork
public
Description:
Formatting a date with cocoa - can it really require this many lines of code??
Public Clone URL: git://gist.github.com/216281.git
Embed All Files: show embed
Objective-C #
1
2
3
4
5
  NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
  [outputFormatter setDateFormat:@"EEEE MMMM d"];
  NSString *newDateString = [outputFormatter stringFromDate:myDate];
  [outputFormatter release];