我用'DateFromComponents'设置了一个日期,当我读出它时......错了。 我必须将DAY设置为第二天或之后的任何事情,以便我获得正确的一年?!? 我设定了2011年,当我读到它时,我得到了2010年的年份!!
day = 1;
month = 1;
year = 2011;
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setDay:day];
[components setMonth:month];
[components setYear:year];
NSDate *date = [gregorian dateFromComponents:components];
[gregorian release];
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"DD MMMM YYYY"];
NSLog (@"hmm: %@",[dateFormatter stringFromDate:actDate]);
-------我在这里得到1 January 2010 /// 2010 not 2011
!?!?
如何解决这个问题。
thx chris
答案 0 :(得分:6)
我运行了这段代码:
NSInteger day = 1;
NSInteger month = 1;
NSInteger year =0;
NSCalendar *gregorian;
NSDateComponents *components;
NSDate *theDate;
NSDateFormatter *dateFormatter;
for (int i=2005; i<2015; i++) {
year= i;
gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
components = [[NSDateComponents alloc] init];
[components setDay:day];
[components setMonth:month];
[components setYear:year];
theDate = [gregorian dateFromComponents:components];
[gregorian release];
dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"DD MMMM YYYY"];
NSLog(@"year=%d",year);
NSLog (@"hmm: %@",[dateFormatter stringFromDate:theDate]);
NSLog(@"theDate=%@\n\n",theDate);
}
...得到了这个输出:
year=2005
hmm: 01 January 2004
theDate=2005-01-01 00:00:00 -0600
year=2006
hmm: 01 January 2006
theDate=2006-01-01 00:00:00 -0600
year=2007
hmm: 01 January 2007
theDate=2007-01-01 00:00:00 -0600
year=2008
hmm: 01 January 2008
theDate=2008-01-01 00:00:00 -0600
year=2009
hmm: 01 January 2008
theDate=2009-01-01 00:00:00 -0600
year=2010
hmm: 01 January 2009
theDate=2010-01-01 00:00:00 -0600
year=2011
hmm: 01 January 2010
theDate=2011-01-01 00:00:00 -0600
year=2012
hmm: 01 January 2012
theDate=2012-01-01 00:00:00 -0600
year=2013
hmm: 01 January 2013
theDate=2013-01-01 00:00:00 -0600
year=2014
hmm: 01 January 2014
theDate=2014-01-01 00:00:00 -0600
显然问题出在格式化程序而不是日期。但是,我没有看到格式化程序出了什么问题。 。
修改强>
转换:
[dateFormatter setDateFormat:@"DD MMMM YYYY"];
......来:
[dateFormatter setDateFormat:@"DD MMMM yyyy"];
...解决了这个问题,虽然我不知道为什么。
答案 1 :(得分:4)
如http://unicode.org/reports/tr35/tr35-6.html#Date_Format_Patterns所述,YYYY可能与日历年不同。
1月1日可以属于前一年的最后一周。 YYYY将显示提及几周(即2009年第52周)的年份。如果2010年1月1日属于2009年第52周,则YYYY将显示2009年。
这就是你应该使用yyyy的原因。