作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要获取当前日期。
然后添加年份。
并以 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/
我是一名优秀的程序员,十分优秀!