求两个时间的差

直接上代码:


注:代码中的model.recentTime就是你自己要计算的时间  

    NSString * newTime = [model.recentTime substringToIndex:19];//取特定的字符串与系统给的格式匹配

    NSLog(@"newTime%@",newTime);

    //dateAnd日历

    NSTimeZone *zone = [NSTimeZone systemTimeZone];

    NSDate *startDate = [NSDate date];//起始时间

    NSInteger interval = [zone secondsFromGMTForDate: startDate];

    NSDate *localDate = [startDate  dateByAddingTimeInterval: interval];

    NSLog(@"startDate%@",localDate);

    //字符窜转日期格式

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

     [inputStr setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]];//美国制

    [inputStr setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    NSDate *endDate = [inputStr dateFromString:newTime];//终止时间  

    NSInteger interVal2 = [zone secondsFromGMTForDate:endDate];

    NSDate * localEndDate = [endDate dateByAddingTimeInterval:interVal2];

    NSLog(@"endDate%@",localEndDate);

    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

    NSUInteger unitFlags = NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit;

    NSDateComponents *components = [gregorian components:unitFlags fromDate:localDate toDate:localEndDate options:0];

    NSInteger days = [components day];

    NSInteger hours = [components hour];

    NSInteger minutes = [components minute];

   // NSLog(@"months:%lddays:%ld:hours%ld,minute:%ld",(long)months,(long)days,(long)hours,(long)minute);

    

    

    self.DiseaseNameLabel.text = model.reminderTitle;

    self.distanceTimeLabel.text =[NSString stringWithFormat:@"倒计时:%ld%ld%ld",(long)days,(long)hours,(long)minutes];

    self.contentLabel.text = model.medicationNames;

    

    //拼接参数

    NSTimeInterval  second = days*24*60*60+hours*60*60+minutes*60;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值