我对 NSDate 比较有疑问。我在谷歌搜索我的问题时尝试了几种解决方案,但没有任何改变:我比较两个日期,我总是得到 NSOrderedSame 或 NSTimeIntervals = 0.0000; 之间的差异;
我的代码如下所示:
NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
[inputFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
for (checklisteModel *updateRecord in updateArray)
{
NSDate *serverDate = [inputFormatter dateFromString:updateRecord.last_update];
NSString *lastUpdateFromLocalRecord = [self getLastUpdateForChecklisteItemWithID:updateRecord.checklisteID];
NSDate *localDate = [inputFormatter dateFromString:lastUpdateFromLocalRecord];
NSDateFormatter* fmt = [[NSDateFormatter alloc] init];
NSLog(@"checkliste ID: %i",updateRecord.checklisteID);
NSLog(@"server Date: ----- %@",[fmt stringFromDate:serverDate]);
NSLog(@"local Date: ----- %@",lastUpdateFromLocalRecord);
NSLog(@"difference of dates: %f",[serverDate timeIntervalSinceDate:localDate]);
NSTimeInterval distanceBetweenDates = [serverDate timeIntervalSinceDate:localDate];
double secondsInMinute = 60;
NSInteger secondsBetweenDates = distanceBetweenDates / secondsInMinute;
if (secondsBetweenDates == 0)
NSLog(@"seconds between == 0");
else if (secondsBetweenDates < 0)
NSLog(@"seconds between < 0");
else
NSLog(@"seconds between > 0");
//last_update on server is earlier than local
if ([serverDate compare:localDate] == NSOrderedAscending)
{
NSLog(@"Server data is earlier than local data");
NSLog([NSString stringWithFormat:@"server data: %@, local data: %@",updateRecord.last_update,lastUpdateFromLocalRecord]);
}
// server data is later than local data
else if ([serverDate compare:localDate] == NSOrderedDescending)
{
NSLog(@"Server data is later than local data");
NSLog([NSString stringWithFormat:@"server data: %@, local data: %@",updateRecord.last_update,lastUpdateFromLocalRecord]);
}
else
{
NSLog(@"Server data and local data are the same");
}
}
我的部分调试显示了这一点:
checkliste ID: 21
server Date: -----
local Date: ----- 2012-10-29 10:13:46
difference of dates: 3810.000000
seconds between > 0
Server data is later than local data
server data: 2012-10-29 11:17:16, local data: 2012-10-29 10:13:46