美文网首页
时间差(3天前、10分钟前)

时间差(3天前、10分钟前)

作者: 碧海云天V | 来源:发表于2018-03-28 09:59 被阅读8次

    计算指定时间与当前的时间差 比如,3天前、10分钟前(这个在项目中经常遇到,所以记录了下来)

    +(NSString *) compareCurrentTime:(NSDate*) compareDate                      
    {
        NSTimeInterval  timeInterval = [compareDate timeIntervalSinceNow];
        timeInterval = -timeInterval;
        long temp = 0;
        NSString *result;
        if (timeInterval < 60) {
            result = [NSStringstringWithFormat:@"刚刚"];
        }
        else if((temp = timeInterval/60) <60){
           result = [NSStringstringWithFormat:@"%d分前",temp];
        }
        
        else if((temp = temp/60) <24){
            result = [NSStringstringWithFormat:@"%d小前",temp];
        }
         
        else if((temp = temp/24) <30){
            result = [NSStringstringWithFormat:@"%d天前",temp];
        }
        
        else if((temp = temp/30) <12){
            result = [NSStringstringWithFormat:@"%d月前",temp];
        }
        else{
            temp = temp/12;
            result = [NSStringstringWithFormat:@"%d年前",temp];
        }
        
        return  result;
    }
    以下是NSDate中的常用方法:
    /*
         
         - (id)initWithTimeInterval:(NSTimeInterval)secs sinceDate:(NSDate *)refDate;
         初始化为以refDate为基准,然后过了secs秒的时间
         
         - (id)initWithTimeIntervalSinceNow:(NSTimeInterval)secs;
         初始化为以当前时间为基准,然后过了secs秒的时间
         
         
         - (NSTimeInterval)timeIntervalSinceDate:(NSDate *)refDate;
         以refDate为基准时间,返回实例保存的时间与refDate的时间间隔
         
         - (NSTimeInterval)timeIntervalSinceNow;
         以当前时间(Now)为基准时间,返回实例保存的时间与当前时间(Now)的时间间隔
         
         - (NSTimeInterval)timeIntervalSince1970;
         以1970/01/01 GMT为基准时间,返回实例保存的时间与1970/01/01 GMT的时间间隔
         
         - (NSTimeInterval)timeIntervalSinceReferenceDate;
         以2001/01/01 GMT为基准时间,返回实例保存的时间与2001/01/01 GMT的时间间隔
         
         
         + (NSTimeInterval)timeIntervalSinceReferenceDate;
    
    */
    

    相关文章

      网友评论

          本文标题:时间差(3天前、10分钟前)

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