zoukankan      html  css  js  c++  java
  • 判断当前时间是否在一天的某个时间段内,可设置时,分,秒

    - (void)viewDidLoad {
        [super viewDidLoad];
        
        NSDateComponents *fromDateComponents = [[NSDateComponents alloc]init];
        NSDateComponents *toDateComponents = [[NSDateComponents alloc]init];
        [fromDateComponents setHour:6];        // 开始时间-小时
        [toDateComponents setHour:18];         // 结束时间-小时
        [toDateComponents setMinute:58];       // 结束时间-分钟
        
        
        [self isBetweenFromDateComponents:fromDateComponents toComponents:toDateComponents];
        
    }
    
    /**
     *  转化为系统当前地区时间
     *
     *  @param date 系统时间
     *
     *  @return 系统当前地区时间
     */
    - (NSDate *)convertSystemLocationDate:(NSDate *)date
    {
        NSTimeZone *zone = [NSTimeZone systemTimeZone];
        NSTimeInterval interval = [zone secondsFromGMTForDate:date];
        return [date dateByAddingTimeInterval:interval];
    }
    
    /**
     *  获取当前时间是否在设置的某一个时间段内
     *
     *  @param fromComponents 开始时间
     *  @param toComponents   结束时间
     *
     *  @return BOOL
     */
    - (BOOL)isBetweenFromDateComponents:(NSDateComponents*)fromComponents toComponents:(NSDateComponents *)toComponents
    {
        NSDate *fromDate = [self getCustomDateeWithDateComponents:fromComponents];
        NSDate *toDate = [self getCustomDateeWithDateComponents:toComponents];
    
        // 获取当前时间
        NSDate *currDate = [NSDate date];
        if ([[self convertSystemLocationDate:currDate] compare:fromDate]== NSOrderedDescending && [[self convertSystemLocationDate:currDate] compare:toDate] == NSOrderedAscending)
        {
            return YES;
        }
        return NO;
    }
    
    /**
     *  根据设置的时间返回一个NSDate类型的时间
     *
     *  @param dateComponents NSDateComponents
     *
     *  @return NSDate
     */
    - (NSDate *)getCustomDateeWithDateComponents:(NSDateComponents *)dateComponents
    {
        //获取当前时间
        NSDate *currentDate = [NSDate date];
        NSCalendar *currentCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
        NSDateComponents *currentComps = [[NSDateComponents alloc] init];
        
        NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
        
        currentComps = [currentCalendar components:unitFlags fromDate:currentDate];
        
        //设置当天的某个点
        NSDateComponents *resultComps = [[NSDateComponents alloc] init];
        [resultComps setYear:[currentComps year]];
        [resultComps setMonth:[currentComps month]];
        [resultComps setDay:[currentComps day]];
        [resultComps setHour:[dateComponents hour]];
        [resultComps setMinute:[dateComponents minute]];
        
        NSCalendar *resultCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    
        NSDate *resultDate = [self convertSystemLocationDate:[resultCalendar dateFromComponents:resultComps]];
        
        return resultDate;
    }
  • 相关阅读:
    一个关于状态机的问题
    8位同步码修改变4位同步码
    BT1120时序,可以用于自测用
    欧几理德,扩展欧几里德和模线性方程组。
    "旋转的风车"----windows(GDI)绘图
    草滩小恪的学习链接(汇总版)
    酒鬼随机漫步(一个矢量类)
    小题精炼-----初试C语言
    大二(上)------我欠青春一份疯狂
    HDU 1027 Ignatius and the Princess II(康托逆展开)
  • 原文地址:https://www.cnblogs.com/joesen/p/4447780.html
Copyright © 2011-2022 走看看