所以我试图转换类似:“Mon Dec 02 2013 01:45:08 GMT-0600 (CST)”
如果我没有结尾(GMT-0600(CST)),这很好用:
NSDateFormatter *dateFormatter = [NSDateFormatter new];
[dateFormatter setDateFormat:@"EEE MMM dd yyyy HH:mm:ss z"];
[dateFormatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"EN"]];
NSDate *myDate=[dateFormatter dateFromString:@"Mon Dec 02 2013 01:45:08 GMT-0600 (CST)"];
NSLog(@"--> %@",myDate);
但既然我这样做了,它似乎不起作用。