Created
October 24, 2014 05:34
-
-
Save Sunnyztj/960b6c7c30bbbf33258a to your computer and use it in GitHub Desktop.
NSDateFormatter string to nsdate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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