Skip to content

Instantly share code, notes, and snippets.

@chelsea
Created September 14, 2010 13:47
Show Gist options
  • Save chelsea/579053 to your computer and use it in GitHub Desktop.
Save chelsea/579053 to your computer and use it in GitHub Desktop.
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy"];
//Optionally for time zone converstions
[formatter setTimeZone:[NSTimeZone timeZoneWithName:@"..."]];
NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment