如何检查NSDate是否在特定月份?

时间:2014-07-18 19:45:18

标签: ios objective-c nsdate nspredicate

我有一系列NSDates,我想要做的是检查日期是否属于一年中的特定月份,并将它们组合在另一个数组中。我作为NSInteger得到了一个月和一年。如果你们可以帮助我使用谓词或简单的if()语句,那对我帮助很大。

1 个答案:

答案 0 :(得分:3)

您可以使用以下函数并为数组生成循环。

for(NSDate *date in arrDates){

  if([self isDateFalls:date withYourYear:year andYourMonth:month]){
        NSLog(@"YES DATE FALLS IN YEAR AND MONTH");
  } 
  else{
        NSLog(@"NO DATE NOT FALLS IN YEAR AND MONTH");
  }
}

-(BOOL)isDateFalls:(NSDate *)date withYourYear:(NSInteger)year andYourMonth:(NSInteger)month{

    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *dateComponents = [gregorian components:(NSMonthCalendarUnit | NSYearCalendarUnit) fromDate:date];
    if(dateComponents.year == year && dateComponents.month == month){

        return YES;
    }

    return NO;

}