gpt4 book ai didi

ios - NSString 到 NSDate 给出了错误的日期

转载 作者:可可西里 更新时间:2023-11-01 05:21:47 24 4
gpt4 key购买 nike

<分区>

我有这段代码:

NSDateFormatter* df = [[NSDateFormatter alloc] init];
df.locale = [NSLocale currentLocale];
df.timeZone = [NSTimeZone localTimeZone];
df.timeStyle = NSDateFormatterShortStyle;
df.dateStyle = NSDateFormatterShortStyle;
df.locale = [NSLocale currentLocale];
[df setDateFormat:@"dd/MM/yyyy"];
NSString *todaysDate = @"31/12/2013";
NSDate* today = [df dateFromString:todaysDate];

NSLog(@"comparing todaysDate: %@ with today: %@",todaysDate,today);

当我检查我的控制台时,我看到今天的日期是 31/12/2013 而今天是 2013-12-30 21:00:00 +0000 我不明白为什么它会过去 1 天......任何人都可以帮帮我?我试图根据日期基本上过滤掉字典中的一些项目。此处未包含过滤部分,因为已确定 dateFromString 未完成其工作。

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