我有一个NSDate
,我必须和另外两个比较NSDate
,我试着用NSOrderAscending
和NSOrderDescending
,但如果我的日期是在其他两个日期平等吗?
例如:如果我有一个myDate = 24/05/2011
和另外两个分别是一个= 24/05/2011
和两个24/05/2011
,我该怎么用?
我有一个NSDate
,我必须和另外两个比较NSDate
,我试着用NSOrderAscending
和NSOrderDescending
,但如果我的日期是在其他两个日期平等吗?
例如:如果我有一个myDate = 24/05/2011
和另外两个分别是一个= 24/05/2011
和两个24/05/2011
,我该怎么用?
Answers:
返回一个NSComparisonResult值,该值指示接收者的时间顺序和另一个给定的日期。
- (NSComparisonResult)compare:(NSDate *)anotherDate
参量
anotherDate
比较接收者的日期。此值不能为nil。如果值为nil,则行为是不确定的,并且在Mac OS X的将来版本中可能会更改。
返回值
如果:
接收者和anotherDate彼此完全相同,
NSOrderedSame
接收器的时间晚于另一个日期,
NSOrderedDescending
接收者的时间早于另一个日期,
NSOrderedAscending
换一种说法:
if ([date1 compare:date2] == NSOrderedSame) ...
请注意,在您的特定情况下,阅读和编写以下内容可能会更容易:
if ([date2 isEqualToDate:date2]) ...
NSDateComponents
经过大量搜索stackoverflow和网络之后,我不得不断定,做到这一点的最佳方法是这样的:
- (BOOL)isEndDateIsSmallerThanCurrent:(NSDate *)checkEndDate
{
NSDate* enddate = checkEndDate;
NSDate* currentdate = [NSDate date];
NSTimeInterval distanceBetweenDates = [enddate timeIntervalSinceDate:currentdate];
double secondsInMinute = 60;
NSInteger secondsBetweenDates = distanceBetweenDates / secondsInMinute;
if (secondsBetweenDates == 0)
return YES;
else if (secondsBetweenDates < 0)
return YES;
else
return NO;
}
您也可以将其更改为小时之间的差异。
请享用!
如果您只想比较日期格式为dd / MM / yyyy的日期,则需要在NSDate* currentdate = [NSDate date];
&& 之间添加以下行NSTimeInterval distance
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd/MM/yyyy"];
[dateFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]
autorelease]];
NSString *stringDate = [dateFormatter stringFromDate:[NSDate date]];
currentdate = [dateFormatter dateFromString:stringDate];
我想你是在问比较函数中的返回值是多少。
如果日期相等,则返回 NSOrderedSame
如果升序(2 arg> 1 arg)返回 NSOrderedAscending
如果降序(2 arg <1 arg)返回 NSOrderedDescending
我不知道您是否曾问过这个问题,但是如果您只想比较NSDate的日期部分,则必须使用NSCalendar和NSDateComponents删除时间部分。
这样的事情应该作为NSDate的类别:
- (NSComparisonResult)compareDateOnly:(NSDate *)otherDate {
NSUInteger dateFlags = NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit;
NSCalendar *gregorianCalendar = [[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar] autorelease];
NSDateComponents *selfComponents = [gregorianCalendar components:dateFlags fromDate:self];
NSDate *selfDateOnly = [gregorianCalendar dateFromComponents:selfComponents];
NSDateComponents *otherCompents = [gregorianCalendar components:dateFlags fromDate:otherDate];
NSDate *otherDateOnly = [gregorianCalendar dateFromComponents:otherCompents];
return [selfDateOnly compare:otherDateOnly];
}
NSDate
实际上代表自参考日期(我认为是2000年1月1日UTC)以来的时间间隔(以秒为单位)。在内部,使用双精度浮点数,因此即使两个日期都在同一天,也很难将两个任意日期进行比较。如果要查看特定日期是否在特定日期,则可能需要使用NSDateComponents
。例如
NSDateComponents* dateComponents = [[NSDateComponents alloc] init];
[dateComponents setYear: 2011];
[dateComponents setMonth: 5];
[dateComponents setDay: 24];
/*
* Construct two dates that bracket the day you are checking.
* Use the user's current calendar. I think this takes care of things like daylight saving time.
*/
NSCalendar* calendar = [NSCalendar currentCalendar];
NSDate* startOfDate = [calendar dateFromComponents: dateComponents];
NSDateComponents* oneDay = [[NSDateComponents alloc] init];
[oneDay setDay: 1];
NSDate* endOfDate = [calendar dateByAddingComponents: oneDay toDate: startOfDate options: 0];
/*
* Compare the date with the start of the day and the end of the day.
*/
NSComparisonResult startCompare = [startOfDate compare: myDate];
NSComparisonResult endCompare = [endOfDate compare: myDate];
if (startCompare != NSOrderedDescending && endCompare == NSOrderedDescending)
{
// we are on the right date
}
首先检查以下用于日期比较的函数,然后创建两个NSDate对象并传递给该函数:在viewDidload中或根据您的方案添加下面的代码行。
-(void)testDateComaparFunc{
NSString *getTokon_Time1 = @"2016-05-31 03:19:05 +0000";
NSString *getTokon_Time2 = @"2016-05-31 03:18:05 +0000";
NSDateFormatter *dateFormatter=[NSDateFormatter new];
[dateFormatter setDateFormat:@"yyyy-MM-dd hh:mm:ss Z"];
NSDate *tokonExpireDate1=[dateFormatter dateFromString:getTokon_Time1];
NSDate *tokonExpireDate2=[dateFormatter dateFromString:getTokon_Time2];
BOOL isTokonValid = [self dateComparision:tokonExpireDate1 andDate2:tokonExpireDate2];}
这是功能
-(BOOL)dateComparision:(NSDate*)date1 andDate2:(NSDate*)date2{
BOOL isTokonValid;
if ([date1 compare:date2] == NSOrderedDescending) {
//"date1 is later than date2
isTokonValid = YES;
} else if ([date1 compare:date2] == NSOrderedAscending) {
//date1 is earlier than date2
isTokonValid = NO;
} else {
//dates are the same
isTokonValid = NO;
}
return isTokonValid;}
只需更改日期并测试上述功能即可:)