I saw a different answer and question, but I did not find any useful answer for me. I have a string like 2014-10-07T07:29:55.850Z , and I want to have a date to compare each other. If I use this code:
NSString *fullDate = payload[@"sent_ts"]; NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; dateFormat setDateFormat:@"yyyy-MM-ddTHH:mm:ss.SSSZ"]; NSDate *date = [dateFormat dateFromString:fullDate];
My date is zero. Why?
date ios cocoa-touch
fustalol
source share