Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Created November 11, 2014 01:53
Show Gist options
  • Save hachinobu/e92542baec6ffc1c66a5 to your computer and use it in GitHub Desktop.
Save hachinobu/e92542baec6ffc1c66a5 to your computer and use it in GitHub Desktop.
NSDate with ISO-8601
NSDateFormatter* formatter = [NSDateFormatter new];
formatter.dateFormat = @"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
formatter.timeZone = [NSTimeZone timeZoneWithName:@"UTC"];
NSDate* date = [formatter dateFromString:@"2013-10-04T05:16:29.000Z"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment