众所周知,在两天之间使用NSCalenderUnit类型计算年数,天数,月数
dateComponent = [calender components:NSCalendarUnitDay fromDate:startDate toDate:endDate options:0];
totalDays = (int)dateComponent.day;
有人建议如何获得总周数? 我已尝试使用可用的周单位但未达到要求。
注意:我们不能使用totaldays / 7 ..因为如果startdate = jan'10'2015 endDate Feb'02'15意味着22/7 = 3但实际上它是4 ..(1月2日,3日,4周和2月1日。)