我最近升级到 iOS 6,发现 dateFromString 工作不正常,除非我的 dateFormat 有问题。它在升级之前工作。
代码:
NSString *string = @"2012-09-24 - Sun";
NSLog(@"string = %@", string);
NSDateFormatter *df = [[NSDateFormatter alloc] init];
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en-US"];
[df setLocale:locale];
[df setDateFormat:@"yyyy-MM-dd - EEE"];
NSDate *date = [df dateFromString:string];
NSLog(@"date = %@", date);
输出:
string = 2012-09-24 - Sun
date = 1999-12-26 05:00:00 +0000
有什么建议么?