我将根据年计算天数。例如:如果这个月是九月,则根据当年计算天数(九月...十二月)。一月之后,它将根据明年计算。
我检索从当前月份到月底的月份数。
NSDate *curmonth=[NSDate date];
NSString *endmonthstr=@"2013-12-31";
NSDateFormatter *endmonthformatter=[[NSDateFormatter alloc]init];
[endmonthformatter setDateFormat:@"yyyy-MM-dd"];
NSDate *endmonth=[endmonthformatter dateFromString:endmonthstr];
NSInteger month = [[[NSCalendar currentCalendar] components: NSMonthCalendarUnit
fromDate: curmonth
toDate: endmonth
options: 0] month];
NSInteger monthplus=month+1;
NSInteger count=monthplus;
NSLog(@"%d",monthplus);
但是,我不知道如何比较这个并计算天数。
任何想法请帮助我