Skip to content

Instantly share code, notes, and snippets.

@Sunnyztj
Created October 24, 2014 05:34
Show Gist options
  • Save Sunnyztj/960b6c7c30bbbf33258a to your computer and use it in GitHub Desktop.
Save Sunnyztj/960b6c7c30bbbf33258a to your computer and use it in GitHub Desktop.
NSDateFormatter string to nsdate
NSDateFormatter *startDateFormatter = [[NSDateFormatter alloc] init];
[startDateFormatter setTimeZone:[NSTimeZone localTimeZone]];
[startDateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
NSDate *dateT = [startDateFormatter dateFromString:dateString];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment