/**
* @method
*
* @brief 獲取兩個日期之間的天數(shù)
* @param fromDate? ? ? 起始日期
* @param toDate? ? ? ? 終止日期
* @return? ? 總天數(shù)
*/
+ (NSInteger)numberOfDaysWithFromDate:(NSDate *)fromDate toDate:(NSDate *)toDate{
? ? NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
? ? NSDateComponents? ? * comp = [calendar components:NSCalendarUnitDay
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? fromDate:fromDate
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? toDate:toDate
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? options:NSCalendarWrapComponents];
? ? NSLog(@" -- >>? comp : %@? << --",comp);
? ? return comp.day;
}