首页 > 代码库 > 时间差计算
时间差计算
//是不是过了指定的天数- (BOOL) isAfterDays:(int) days { NSDate * sendDate = [NSDate date]; NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSString * locationString = [dateFormatter stringFromDate:sendDate]; NSString * lastShowTime = [[NSUserDefaults standardUserDefaults] objectForKey:@"lastShowTime"]; if (lastShowTime == nil) { [[NSUserDefaults standardUserDefaults] setObject:locationString forKey:@"lastShowTime"]; } else { NSString * string = [self intervalSinceNow:lastShowTime]; int timeInterval = [string intValue]; NSLog(@"Interval:%@",string); if (timeInterval >= days) { [self saveLastShowTime]; return YES; } } return NO;}//存储本次提醒时间,以便下次计算下次提醒的时间- (void) saveLastShowTime { NSDate * sendDate = [NSDate date]; NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSString * locationString = [dateFormatter stringFromDate:sendDate]; [[NSUserDefaults standardUserDefaults] setObject:locationString forKey:@"lastShowTime"];}#pragma mark 获取指定日期距离现在的时间段- (NSString *)intervalSinceNow: (NSString *) theDate{ NSDateFormatter *date=[[NSDateFormatter alloc] init]; [date setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSDate *d=[date dateFromString:theDate]; NSTimeInterval late=[d timeIntervalSince1970]*1; NSDate* dat = [NSDate dateWithTimeIntervalSinceNow:0]; NSTimeInterval now=[dat timeIntervalSince1970]*1; NSString *timeString=@""; NSTimeInterval cha=now-late; //********** timeString = [NSString stringWithFormat:@"%f", cha/86400]; timeString = [timeString substringToIndex:timeString.length-7]; timeString=[NSString stringWithFormat:@"%@", timeString]; //********* return timeString;}
时间差计算
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。