-4

我需要解析的输入日期字符串是 2013:05:14 13:24:44 我尝试使用这个 NSDateFormatter 代码,但它不起作用......知道吗?

_dateFormatter = [NSDateFormatter alloc];
[_dateFormatter setDateFormat:@"yyyy:MM:dd hh:mm:ss"];
NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[_dateFormatter setLocale:usLocale];
NSTimeZone *timeZone = [NSTimeZone timeZoneWithName:@"UTC"];
4

1 回答 1

2

而不是hh:mm:ss在字符串中,您需要HH:mm:ss. 由于字符串显示小时为“13”,因此您需要使用HH(00-23) 而不是hh(01-12)。

于 2013-05-15T15:08:20.543 回答