我有下面的代码。
NSDateFormatter *df = ...;
[df setTimeZone:[NSTimeZone defaultTimeZone]];
[df setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZZZ"];
NSDate * date = [df dateFromString:date_string]; //here is the problem
在24小时模式一切正常。 当12小时模式被设置在设备上,stringFromDate返回null。 DATE_STRING的格式是一样的所有的时间,日期格式了。 为什么会发生?
尝试设置的语言环境是这样的:
NSLocale *twelveHourLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"];
df.locale = twelveHourLocale;
若要改为强制到24小时后,您可以使用:
NSLocale *twentyFour = [[NSLocale alloc] initWithLocaleIdentifier:@"en_GB"];
在你的NSDateFormatter "yyyy-MM-dd'T'HH:mm:ss.SSSZZZ"
HH
代表24小时hh
代表12小时
12小时模式至24小时模式:
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"hh:mm a"];
NSDate *amPmDate = [formatter dateFromString:amPmHourString];
[formatter setDateFormat:@"HH:mm"];
NSString *24HourString = [formatter stringFromDate:amPmDate]];
对于24小时模式至12小时模式正好反其道而行之
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
NSLocale *locale = [[[NSLocale alloc]
initWithLocaleIdentifier:@"en_US_POSIX"] autorelease];
[dateFormat setLocale:locale];