我试图实现dropBox同步,需要比较两个文件的日期。一个在我的dropBox账户上,一个在我的iPhone上。

我想出了以下方法,但我得到了意想不到的结果。我想我在比较这两个日期时做了一些根本性的错误。我只是使用> <操作符,但我猜这是不行的,因为我比较两个NSDate字符串。开始吧:

NSLog(@"dB...lastModified: %@", dbObject.lastModifiedDate); 
NSLog(@"iP...lastModified: %@", [self getDateOfLocalFile:@"NoteBook.txt"]);

if ([dbObject lastModifiedDate] < [self getDateOfLocalFile:@"NoteBook.txt"]) {
    NSLog(@"...db is more up-to-date. Download in progress...");
    [self DBdownload:@"NoteBook.txt"];
    NSLog(@"Download complete.");
} else {
    NSLog(@"...iP is more up-to-date. Upload in progress...");
    [self DBupload:@"NoteBook.txt"];
    NSLog(@"Upload complete.");
}

这给了我以下(随机和错误)输出:

2011-05-11 14:20:54.413 NotePage[6918:207] dB...lastModified: 2011-05-11 13:18:25 +0000
2011-05-11 14:20:54.414 NotePage[6918:207] iP...lastModified: 2011-05-11 13:20:48 +0000
2011-05-11 14:20:54.415 NotePage[6918:207] ...db is more up-to-date.

或者这个恰好是正确的:

2011-05-11 14:20:25.097 NotePage[6903:207] dB...lastModified: 2011-05-11 13:18:25 +0000
2011-05-11 14:20:25.098 NotePage[6903:207] iP...lastModified: 2011-05-11 13:19:45 +0000
2011-05-11 14:20:25.099 NotePage[6903:207] ...iP is more up-to-date.

当前回答

你想要使用NSDate compare:, laterDate:,早期日期:,或isEqualToDate:方法。在这种情况下,使用<和>操作符是比较指针,而不是比较日期

其他回答

让我们假设两个日期:

NSDate *date1;
NSDate *date2;

下面的比较将告诉我们哪个更早/更晚/相同:

if ([date1 compare:date2] == NSOrderedDescending) {
    NSLog(@"date1 is later than date2");
} else if ([date1 compare:date2] == NSOrderedAscending) {
    NSLog(@"date1 is earlier than date2");
} else {
    NSLog(@"dates are the same");
}

更多细节请参考NSDate类文档。

你想要使用NSDate compare:, laterDate:,早期日期:,或isEqualToDate:方法。在这种情况下,使用<和>操作符是比较指针,而不是比较日期

你们为什么不用这些NSDate比较方法呢:

- (NSDate *)earlierDate:(NSDate *)anotherDate;
- (NSDate *)laterDate:(NSDate *)anotherDate;

比较NSDate对象的另一种简单方法是将它们转换为原始类型,这允许轻松使用'>' '<' '=='等

eg.

if ([dateA timeIntervalSinceReferenceDate] > [dateB timeIntervalSinceReferenceDate]) {
    //do stuff
}

timeintervalsincerely eferencedate将日期转换为自引用日期(2001年1月1日,GMT)以来的秒数。当timeintervalsinceferencedate返回一个NSTimeInterval(它是一个双类型定义)时,我们可以使用原语比较器。

- (NSDate *)earlierDate:(NSDate *)anotherDate

这将返回较早的接收者和另一个日期。如果两者相同,则返回接收器。