美文网首页iOS
iOS开发中使用NSCalendar计算两个时间差

iOS开发中使用NSCalendar计算两个时间差

作者: 梁森的简书 | 来源:发表于2019-06-12 16:35 被阅读1次

    之前计算两个时间差得到的是秒,然后通过秒来计算几个小时几分几秒,但实际苹果为我们提供了一个类,使用该类的对象方法可以直接计算出两个时间的时间差,时间差可以具体到年、月、日、时、分、秒,该类便是NSCalendar。
    使用NSCalendar计算两个时间差
    代码:

      NSString *time1 = @"2019-06-10 01:40:08";
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";
    NSDate *date1 = [formatter dateFromString:time1];
    NSDate *date2 = [NSDate date];
    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSCalendarUnit type = NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond;
    NSDateComponents *cmps = [calendar components:type fromDate:date1 toDate:date2 options:0];
    NSLog(@"时间差:%ld年%ld月%ld日%ld小时%ld分钟%ld秒", cmps.year, cmps.month, cmps.day, cmps.hour, cmps.minute, cmps.second);
    

    输出结果:


    0.时间差.png

    相关文章

      网友评论

        本文标题:iOS开发中使用NSCalendar计算两个时间差

        本文链接:https://www.haomeiwen.com/subject/bgwlfctx.html