gpt4 book ai didi

objective-c - 将 NSString 转换为 NSDate。损失了 1 天

转载 作者:行者123 更新时间:2023-12-03 16:55:49 25 4
gpt4 key购买 nike

NSString *dateString = @"20.10.2010";
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"dd.MM.yyyy"];
[dateFormatter setLocale:[NSLocale currentLocale]];

NSLog(@"%@", [dateFormatter dateFromString:dateString]);

我的输出是:

2010-10-19 22:00:00 GMT

为什么会失去一天?​​

最佳答案

可能是因为您的区域设置指定您处于 GMT +2。

这意味着给定日期被解释为 2010-10-20 00:00 GMT+2,因此在 GMT+0 中为 2010-10-19 22:00.

关于objective-c - 将 NSString 转换为 NSDate。损失了 1 天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3905031/

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