在我的应用程序中,我使用一个函数来更改日期格式以替换/和 - 以及日期格式。
当设备设置为12小时时,一切正常。但是当我把它设置为24小时它会返回错误的值。
NSDate *newdate = [self convertDateSlashToDash:[obj valueForKey:@"TaskStartDateTime"]]);
//input date is : 6/6/2017 6:38:00 PM
-(NSDate *)convertDateSlashToDash:(NSString *)dateStr{
if ([dateStr isKindOfClass:[NSDate class]]) {
return (NSDate*)dateStr;
}
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
//Set the AM and PM symbols
[dateFormatter setAMSymbol:@"AM"];
[dateFormatter setPMSymbol:@"PM"];
//Specify only 1 M for month, 1 d for day and 1 h for hour
[dateFormatter setDateFormat:@"M/d/yyyy h:mm:ss a"];
// in ms 1469077819000 without ms 1469077819 for 7/21/2016 5:10:19 AM
NSTimeInterval ti = [[dateFormatter dateFromString:dateStr] timeIntervalSince1970];
NSDate *date = [NSDate dateWithTimeIntervalSince1970:ti];
NSDateFormatter *formatter= [[NSDateFormatter alloc] init];
// [formatter setLocale:[NSLocale currentLocale]];
[formatter setDateFormat:@"yyyy-MM-dd hh:mm:ss aa"];
NSString *dateString = [formatter stringFromDate:date];
NSDate *parsedDate = [formatter dateFromString:dateString];
return dateString;
}
//output of this is (24hrs): 1970-01-01 05:30:00AM
//output of this is (12hrs): 2017-06-06 06:38:00 PM
为什么它不起作用? 请建议。
谢谢。
答案 0 :(得分:1)
请将此行添加到您的代码中以解决该问题
[dateFormatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"]];
Reade more:https://developer.apple.com/library/content/qa/qa1480/_index.html
答案 1 :(得分:0)
12小时制和24小时制与日期格式器的使用方式不同。确保使用正确的格式。我发现你最后一小时使用h
,最后使用a
将格式化程序配置为12小时格式。对于24小时格式,您需要H
或HH
,具体取决于您的需求。您可以参考此link以更好地了解不同的格式