Skip to content

Instantly share code, notes, and snippets.

@mluton
Created November 6, 2012 18:53
Show Gist options
  • Select an option

  • Save mluton/4026698 to your computer and use it in GitHub Desktop.

Select an option

Save mluton/4026698 to your computer and use it in GitHub Desktop.
Output a date in a specified format.
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSLog(@"now: %@", [dateFormatter stringFromDate:[NSDate date]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment