Skip to content

Instantly share code, notes, and snippets.

@mluton
Created November 6, 2012 18:52
Show Gist options
  • Save mluton/4026691 to your computer and use it in GitHub Desktop.
Save mluton/4026691 to your computer and use it in GitHub Desktop.
Format Date in User's Preferred Short Format
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateStyle:NSDateFormatterShortStyle];
NSLog(@"now: %@", [dateFormatter stringFromDate:[NSDate date]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment