gpt4 book ai didi

iphone - NSDateFormatter 忽略 24 小时时间格式

转载 作者:行者123 更新时间:2023-11-28 20:41:39 25 4
gpt4 key购买 nike

我已经坐了很长时间了。我能够弄清楚,我做错了什么。

 NSString * dateString = @"2011-11-21 13:00";
NSDateFormatter *serverDateFormatter = [[NSDateFormatter alloc] init];
[serverDateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
NSDate *serverDate = [serverDateFormatter dateFromString:dateString];

NSLog(@"%@", serverDate);

输出:

2011-11-21 12:00:00 +0000

为什么 13:00 会转换为 12:00?我做错了什么?

最佳答案

你需要设置时区,例子

NSString * dateString = @"2011-11-21 23:20";
NSDateFormatter *serverDateFormatter = [[NSDateFormatter alloc] init];
[serverDateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
[serverDateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
NSDate *serverDate = [serverDateFormatter dateFromString:dateString];
NSLog(@"%@", serverDate);

输出:

2011-11-23 14:22:10.924 xxx [23235:207] 2011-11-21 23:20:00 +0000

关于iphone - NSDateFormatter 忽略 24 小时时间格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8249574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com