iphone - 如何检查一个限制的日期和时间是否与另一个限制重叠?

标签 iphone ios objective-c nsdate

我想检查日期限制*(例如:- 22/07/2013 2:30PM -22/07/2013 8:30PM )* 是否包含在另一个时间限制*< em>(例如:- 22/07/2013 4:30PM -22/07/2013 6:30PM )* 与否。我对这个概念完全陌生。谁能告诉我该怎么做。

任何帮助将不胜感激

下面是我尝试过的代码:

- (void)viewDidLoad
{
    [self isDateInterval:@"8/1/2013 8:30am" and:@"8/1/2013 8:40am" fallsWithin:@"8/1/2013 8:30am" and:@"8/1/2013 8:55am"];
    [super viewDidLoad];
}

-(BOOL)isDateInterval:(NSString*)startDate1 and:(NSString*)endDate1 fallsWithin:(NSString*)startDate2 and:(NSString*)endDate2
{
    BOOL isWithinrange;

    NSDateFormatter *formatter = [[NSDateFormatter alloc]init];

    [formatter setDateFormat:@"dd/MM/yyyy hh:mmaa"];

    NSTimeInterval ti1 = [[formatter dateFromString:startDate1] timeIntervalSince1970];
    NSTimeInterval ti2 = [[formatter dateFromString:endDate1] timeIntervalSince1970];

    NSTimeInterval ti3 = [[formatter dateFromString:startDate2] timeIntervalSince1970];
    NSTimeInterval ti4 = [[formatter dateFromString:endDate2] timeIntervalSince1970];

    if( (ti3 > ti1 && ti3 < ti2) || (ti3 < ti1 && ti4 > ti1) )
    {
        //Date with in range
        isWithinrange=TRUE;
    }
    else
    {
        isWithinrange=FALSE;
        //Not with in range
    }

    return isWithinrange;
}

我希望输出为“isWithin”,因为一个时间间隔的一部分正在进入另一个时间间隔

最佳答案

这段代码会给你你想要的。它检查两个间隔的开始日期或结束日期是否在另一个间隔的开始日期和结束日期之间。

- (BOOL)timeIntervalFromDate:(NSString *)dateString toDate:(NSString *)anotherDateString overlapsWithTimeIntervalFromDate:(NSString *)date2String toDate:(NSString *)anotherDate2String {
    BOOL isWithinRange = NO;

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    formatter.dateFormat = @"dd/MM/yyyy hh:mmaa";

    NSDate *date = [formatter dateFromString:dateString];
    NSDate *anotherDate = [formatter dateFromString:anotherDateString];
    NSDate *date2 = [formatter dateFromString:date2String];
    NSDate *anotherDate2 = [formatter dateFromString:anotherDate2String];

    NSDate *startDate = [date earlierDate:anotherDate];
    NSDate *endDate = [date laterDate:anotherDate];

    NSDate *otherStartDate = [date2 earlierDate:anotherDate2];
    NSDate *otherEndDate = [date2 laterDate:anotherDate2];

    BOOL startDateIsEarlierThanOtherStartDate = [startDate earlierDate:otherStartDate] == startDate;
    BOOL endDateIsLaterThanOtherStartDate = [endDate laterDate:otherStartDate] == endDate;

    BOOL startDateIsEarlierThanOtherEndDate = [startDate earlierDate:otherEndDate] == startDate;
    BOOL endDateIsLaterThanOtherEndDate = [endDate laterDate:otherEndDate] == endDate;

    BOOL otherStartDateIsEarlierThanStartDate = [startDate earlierDate:otherStartDate] == otherStartDate;
    BOOL otherEndDateIsLaterThanStartDate = [otherEndDate laterDate:startDate] == otherEndDate;

    BOOL otherEndDateIsEarlierThanStartDate = [startDate earlierDate:otherEndDate] == otherEndDate;
    BOOL otherEndDateIsLaterThanEndDate = [endDate laterDate:otherEndDate] == otherEndDate;

    isWithinRange = (startDateIsEarlierThanOtherStartDate && endDateIsLaterThanOtherStartDate) || (startDateIsEarlierThanOtherEndDate && endDateIsLaterThanOtherEndDate) || (otherStartDateIsEarlierThanStartDate && otherEndDateIsLaterThanStartDate) || (otherEndDateIsEarlierThanStartDate && otherEndDateIsLaterThanEndDate);

    return isWithinRange;
}

为了解释每种可能的情况,任何 bool 语句对都必须为 true。您向方法提供日期对的顺序并不重要。

关于iphone - 如何检查一个限制的日期和时间是否与另一个限制重叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17899434/

相关文章:

iphone - 从 iOS 应用程序中列出(并连接到)蓝牙设备

iphone - 在 AlertDialog iPhone 中打开 WebView

ios - Xib 导出 View swift 变为 nil

ios - 如何使函数在 AFHTTPRequestOperation 完成后返回

iphone - Xcode 中逻辑测试和应用程序测试的区别?

ios - 两个如何防止加载苹果 map 和从 OSM MKTileOverlay 开始

ios - 无法从此设备复制符号使用 iOS 9.2.1 Xcode 是 7.2

iphone - MPMoviePlayer 错误加载文件

ios - SwiftUI:可以管理各种形状协议(protocol)的单个结构吗?

ios - 解析 iOS 问题关闭登录 View