本文是转载:原文地址是:http://blog.sina.com.cn/s/blog_832701f60101f2o9.html
当前时间是 2013-12-30 09:58:07
《1》
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setTimeZone:[NSTimeZone localTimeZone]];
[df setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString * dateString = [df stringFromDate:post.postDate];
[df release];
dateString的显示结果是:2013-12-30 09:58:07
《2》
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setTimeZone:[NSTimeZone localTimeZone]];
[df setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
NSString * dateString = [df stringFromDate:post.postDate];
[df release];
dateString的显示结果是:2014-12-30 09:58:07
为什么年份差了一年呢?why?百度搜索下~~~~~后~~
Y/YYYY: (Full Year, starting from the Sunday of the 1st week of year)
原来年份格式化“yyyy”计算的年份是正常的每年1月1号开始计算,“YYYY”却是从当年的第一个星期天开始计算;
结果由于2014年的第一个星期天是2013年的12月29号,所以进入2014年也就相对早了3天;
PS:有错误请大家批评~~