我正在尝试以这种方式使用 NSDate 类别生成字符串:
NSString* dateString = nil;
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setLocale:[NSLocal currentLocale]];
[dateFormat setDateFormat:@"dd LLL YYYY"];
dateString = [dateFormat stringFromDate:self];
return dateString;
转换工作正常,除了一种情况(我报告调试会话):如果我尝试像这样转换 NSDate 对象:
(gdb) po self
2012-01-01 00:00:00 +0000
我得到:
(gdb) po dateString
01 Jan 2011
为什么年份要回到2011年????
PS。我已经检查过NSDate 返回错误的年份并且我没有使用日本日历。
多谢