Skip to content

Instantly share code, notes, and snippets.

@rectalogic
Created December 29, 2014 22:25
Show Gist options
  • Save rectalogic/a2380967acbef65910eb to your computer and use it in GitHub Desktop.
Save rectalogic/a2380967acbef65910eb to your computer and use it in GitHub Desktop.
struct tm time;
strptime("1934-11-02T10:45:11", "%FT%T%z", &time);
long ts = timegm(&time);
NSDate *d = [NSDate dateWithTimeIntervalSince1970:ts];
NSLog(@"%@", d);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment