-2

我需要将当前日期/时间与用户选择的日期/时间进行比较。下面是我的代码片段

-(IBAction)btnSaveTouched:(id)sender {
NSDate *today = [NSDate date];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd H:mm"];
NSString *formatterDate = [formatter stringFromDate: today];

NSComparisonResult comparisionResult1 = [self.paramSchedule1StartSQLDateString compare:formatterDate];

if (comparisionResult1 == NSOrderedAscending) {

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Viewing schedule must be after current time." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alert show];
    return;
} 

NSLog(@"comparisionResult1 %d", comparisionResult1);

}

点击 btnSaveTouched(UIButton) 后,日期/时间将存储到数据库中并返回屏幕。(用户选择日期/时间的视图控制器)

但是,当我尝试比较另一个日期/时间时,即使我选择的日期/时间晚于当前日期/时间,也会显示警报。

在 NSLog 比较结果 1 之后,第二次检查总是值为 1。我试图这样做 NSComparsionResult comparisionResult1 = 0; 但它不能正常工作。有什么办法可以做到这一点?

请指教。谢谢

4

3 回答 3

10

日期之间的比较你需要小心,特别是如果你与 NSString 比较,你必须确保两个日期都安排好了,你需要小心两种格式。所以我建议你比较两个 NSDate。样本:

NSDate *date1 = //…
NSDate *date2 = //…
switch ([date1 compare:date2]) {
    case NSOrderedAscending:
    //Do your logic when date1 > date2
        break;

    case NSOrderedDescending:
    //Do your logic when date1 < date2
        break;

    case NSOrderedSame:
    //Do your logic when date1 = date2
        break;
}

当然,您可以为 NSDate 实现一个类别。但已经存在,我喜欢使用这个:NSDate Category,你可以根据需要编辑和自定义。

于 2013-06-25T19:16:58.830 回答
3

尝试使用此代码进行日期之间的任何比较...您不应该以字符串的形式比较日期。比较转换为字符串之前的日期。通过将确切的日期格式指定为 dateString 的格式,使用格式化程序的功能将其转换self.paramSchedule1StartSQLDateString为日期格式。dateFromString然后使用以下函数比较日期。

NSDate *today = [NSDate date]; // current date
NSDate *newDate = self.paramSchedule1StartSQLDateString; // other date 

NSComparisonResult result; 

result = [today compare:newDate]; // comparing two dates

if(result == NSOrderedAscending)
    NSLog(@"today is less");
else if(result == NSOrderedDescending)
    NSLog(@"newDate is less");
else if(result == NSOrderedSame)
    NSLog(@"Both dates are same");
else
    NSLog(@"Date cannot be compared");
于 2013-06-26T04:31:37.967 回答
2
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
                [dateFormatter setDateFormat:@"yyyy-MM-dd"];
                NSDate *date1 = [dateFormatter dateFromString:TodayDate];

                NSDateFormatter *dateFormatte = [[[NSDateFormatter alloc] init] autorelease];
                [dateFormatte setDateFormat:@"yyyy-MM-dd"];
                NSDate *date2 = [dateFormatte dateFromString:CompareDate];

                unsigned int unitFlags = NSDayCalendarUnit;

                NSCalendar *gregorian = [[NSCalendar alloc]initWithCalendarIdentifier:NSGregorianCalendar];
                NSDateComponents *comps = [gregorian components:unitFlags fromDate:date1  toDate:date2  options:0];

                int days = [comps day];
                NSLog(@"%d",days);
于 2013-06-26T04:51:49.000 回答