Skip to content

Instantly share code, notes, and snippets.

@mluton
Created November 6, 2012 00:37
Show Gist options
  • Select an option

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

Select an option

Save mluton/4021596 to your computer and use it in GitHub Desktop.
Read In a UTC Date
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss'Z'"];
[dateFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"UTC"]];
NSDate *date = [dateFormatter dateFromString:@"2112-10-11T06:06:31Z"];
NSLog(@"date: %@", date);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment