希望这只是一个快的阶段,我一米没有简单的东西......
I ve got an NSDateFormatter, which I m using to transformation the strong>2011-11-10 into a Annual Object.
NSDateFormatter *fmtDate = [[NSDateFormatter alloc] init];
[fmtDate setDateFormat:@"YYYY-MM-DD"];
// input of 2011-11-10, output of 2011-01-10 00:00:00 +0000
[appointment setDate:[fmtDate dateFromString:
[tempAppointment objectForKey:@"date"]
]];
从NSDateFormatter的返回存放在管理下的主题案文中。 我的问题是,日期是2011-01-10 00:00 +0000。
为什么这个月从Nobvember减少到1月份? 它保留年金和日金,但不是每月。
我是否需要列入我储存日期的时间? 还是与我确定的形式有关?