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

我需要得到当前日期.

然后添加一年.

并以YYYY-MM-DD格式输出结果,即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];

希望这可以帮助.

相关文章

在有效期内的苹果开发者账号(类型为个人或者公司账号)。还...
Appuploader官网--IOS ipa上传发布工具,证书制作工具跨平台...
苹果在9月13号凌晨(北京时间)发布 iOS 16,该系统的设备可...
计算机图形学--OpenGL递归实现光线追踪
Xcode 14打出来的包在低版本系统运行时会崩溃,报错信息是Li...