如何确定NSDate(包括时间)是否已通过

时间:2012-01-05 16:30:12

标签: iphone objective-c cocoa-touch nsdate

如何确定NSDate(包括时间)是否已通过?我需要基本上将今天的日期与数据库中的日期进行比较,但是我很难过。

3 个答案:

答案 0 :(得分:91)

试试这个:

if ([someDate timeIntervalSinceNow] < 0.0) {
    // Date has passed
}

答案 1 :(得分:6)

你需要使用NSDate比较,这里的许多答案都会对你有帮助。

iOS: Compare two dates

逻辑需要调整,但这应该让你朝着正确的方向前进:

- (BOOL)date:(NSDate*)date isBefore:(BOOL)before otherDate:(NSDate*)otherDate ;
{
    if(before && ([date compare:otherDate] == NSOrderedAscending))
        return YES;
    if (!before && ([date compare:otherDate] == NSOrderedDescending))
        return YES;  
}

用法:

if([self date:yourDate isBefore:YES otherDate:[NSDate date]]) 

答案 2 :(得分:2)

您可以使用

[NSDate date];

获取表示当前时间和日期的NSDate对象。

然后将其与您分析的日期进行比较,例如:

if ([currentDate timeIntervalSince1970] > [yourDate timeIntervalSince1970]) {
// yourDate is in the past
}

你可以用它来比较任何两个日期。希望这会有所帮助。