我想按日期格式化程序制作日期,
2012-07-12
但它显示像
2012-07-11
我的代码:
NString * today_selected=[NSString stringWithFormat:@"%d%@%d%@%d",year_for_activated,@"-",month_for_activated,@"-",taged]; NSDateFormatter *Df=[[NSDateFormatter alloc]init];
//这里year_of_=2012 and month_of_ac=7, and tag=12
但它显示 2012-07-11 而不是 12。
[Df setDateFormat:@"YYYY-MM-DD" ];
NSDate *date_selected=[Df dateFromString: today_selected];
NSLog(@"today_selected:%@",date_selected);
但它显示 2012-01-12