gpt4 book ai didi

Iphone:如何在当前日期上添加年份并将其以 2011-11-20 格式的字符串返回

转载 作者:行者123 更新时间:2023-12-03 19:29:00 25 4
gpt4 key购买 nike

我需要获取当前日期。

然后添加年份。

并以 YYYY-MM-DD aka 2011-11-20 格式输出结果

最佳答案

您将需要使用 NSCalendar 和 NSDateComponents 来执行您想要的操作。像下面这样的东西应该可以解决问题。

NSDate *todaysDate = [NSDate date];
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
[dateComponents setYear:1];
NSDate *targetDate = [gregorian dateByAddingComponents:dateComponents toDate:todaysDate options:0];
[dateComponents release];
[gregorian release];

要将目标日期输出为指定格式的字符串,您可以执行以下操作;

NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSString* dateString = [dateFormatter stringFromDate:targetDate];

希望这有帮助。

关于Iphone:如何在当前日期上添加年份并将其以 2011-11-20 格式的字符串返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3785833/

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