Skip to content

Instantly share code, notes, and snippets.

@davidwengier
Created October 12, 2016 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidwengier/97be7a0168b70fc259ab80ac466bfd1f to your computer and use it in GitHub Desktop.
Save davidwengier/97be7a0168b70fc259ab80ac466bfd1f to your computer and use it in GitHub Desktop.
NSDate *today = [NSDate date];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"dd MMM yyyy"];
[dateFormat setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"GMT"]];
NSString *dateString = [dateFormat stringFromDate:today];
[dateFormat release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment