美文网首页专注iOS开发iOS高级开发iOS开发交流平台
iOS-两种时间格式实现几天前,几小时前,几分钟前

iOS-两种时间格式实现几天前,几小时前,几分钟前

作者: iOS_愛OS | 来源:发表于2016-02-23 13:41 被阅读8205次

方式一 后台给的格式为yyyy-MM-dd HH:mm:ss.SSS

  • 上代码
+ (NSString *) compareCurrentTime:(NSString *)str
{
    
    //把字符串转为NSdate
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.SSS"];
    NSDate *timeDate = [dateFormatter dateFromString:str];
    
    //得到与当前时间差
    NSTimeInterval  timeInterval = [timeDate timeIntervalSinceNow];
    timeInterval = -timeInterval;
    //标准时间和北京时间差8个小时
    timeInterval = timeInterval - 8*60*60;
    long temp = 0;
    NSString *result;
    if (timeInterval < 60) {
        result = [NSString stringWithFormat:@"刚刚"];
    }
    else if((temp = timeInterval/60) <60){
        result = [NSString stringWithFormat:@"%d分钟前",temp];
    }
    
    else if((temp = temp/60) <24){
        result = [NSString stringWithFormat:@"%d小时前",temp];
    }
    
    else if((temp = temp/24) <30){
        result = [NSString stringWithFormat:@"%d天前",temp];
    }
    
    else if((temp = temp/30) <12){
        result = [NSString stringWithFormat:@"%d月前",temp];
    }
    else{
        temp = temp/12;
        result = [NSString stringWithFormat:@"%d年前",temp];
    }
    
    return  result;
}

方式二 后台给的格式为 纯数字1352170595000(13位)

  • 上代码
/** 通过行数, 返回更新时间 */
- (NSString *)updateTimeForRow:(NSInteger)row {
    // 获取当前时时间戳 1466386762.345715 十位整数 6位小数
    NSTimeInterval currentTime = [[NSDate date] timeIntervalSince1970];
    // 创建歌曲时间戳(后台返回的时间 一般是13位数字)
     NSTimeInterval createTime = self.model.tracks.list[row].createdAt/1000;
    // 时间差
    NSTimeInterval time = currentTime - createTime;
    
    // 秒转小时
    NSInteger hours = time/3600;
    if (hours<24) {
        return [NSString stringWithFormat:@"%ld小时前",hours];
    }
    //秒转天数
    NSInteger days = time/3600/24;
    if (days < 30) {
        return [NSString stringWithFormat:@"%ld天前",days];
    }
    //秒转月
    NSInteger months = time/3600/24/30;
    if (months < 12) {
        return [NSString stringWithFormat:@"%ld月前",months];
    }
    //秒转年
    NSInteger years = time/3600/24/30/12;
    return [NSString stringWithFormat:@"%ld年前",years];
}

相关文章

网友评论

  • RiberWang:你好 第一种方法有点问题,具体原因我没有细查
    修改如下:
    + (NSString *)compareCurrentTime:(NSString *)str
    {
    //把字符串转为NSdate
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSDate *timeDate = [dateFormatter dateFromString:str];

    //得到与当前时间差
    NSTimeInterval time = fabs([[NSDate date] timeIntervalSinceDate:timeDate]);

    NSString *returnString = @"";
    if(time < 60)
    returnString = @"刚刚";
    else if(time >=60 && time < 3600)
    returnString = [NSString stringWithFormat:@"%.0f分钟前",time/60];
    else if(time >= 3600 && time < 3600 * 24)
    returnString = [NSString stringWithFormat:@"%.0f小时前",time/(60 * 60)];
    else if(time >= 3600 * 24 && time < 3600 * 24 * 30)
    returnString = [NSString stringWithFormat:@"%.0f天前",time/(60 * 60 * 24)];
    else if(time >= 3600 * 24 * 30 && time < 3600 * 24 * 30 * 12)
    returnString = [NSString stringWithFormat:@"%.0f月前",time/(60 * 60 * 24 * 30)];
    else if(time >= 3600 * 24 * 30 * 12)
    returnString = [NSString stringWithFormat:@"%.0f年前",time/(60 * 60 * 24 * 30 * 12)];

    return returnString;
    }
  • 我常常问自己我是谁:第一种,现在用有错偏差会很厉害,我试验了很多办法不能修正偏差。后来我不直接删除了这几行代码,发现可以了!就是这几行
    NSTimeInterval timeInterval = [timeDate timeIntervalSinceNow];
    timeInterval = -timeInterval;
    //标准时间和北京时间差8个小时
    timeInterval = timeInterval - 8*60*60;

    Xcode 8.3.3版本上加上这几行会出现很严重的偏差


    并且,我在 NSTimeInterval 后面的一句代码修改了,就是这句
    [date2 timeIntervalSinceDate:timeDate];
    用当前时间去对比过去时间
    这样下来才能得到正确的时间
    希望书友能接受!
    RiberWang:按照你这样改 还是有问题的
    方法需要改变一下,整个如下:
    + (NSString *)compareCurrentTime:(NSString *)str
    {
    //把字符串转为NSdate
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSDate *timeDate = [dateFormatter dateFromString:str];

    //得到与当前时间差
    NSTimeInterval time = fabs([[NSDate date] timeIntervalSinceDate:timeDate]);

    NSString *returnString = @"";
    if(time < 60)
    returnString = @"刚刚";
    else if(time >=60 && time < 3600)
    returnString = [NSString stringWithFormat:@"%.0f分钟前",time/60];
    else if(time >= 3600 && time < 3600 * 24)
    returnString = [NSString stringWithFormat:@"%.0f小时前",time/(60 * 60)];
    else if(time >= 3600 * 24 && time < 3600 * 24 * 30)
    returnString = [NSString stringWithFormat:@"%.0f天前",time/(60 * 60 * 24)];
    else if(time >= 3600 * 24 * 30 && time < 3600 * 24 * 30 * 12)
    returnString = [NSString stringWithFormat:@"%.0f月前",time/(60 * 60 * 24 * 30)];
    else if(time >= 3600 * 24 * 30 * 12)
    returnString = [NSString stringWithFormat:@"%.0f年前",time/(60 * 60 * 24 * 30 * 12)];

    return returnString;
    }
    RiberWang:我的也出现这个问题了 确实比较的不对
    dominghao:是的,你说的对...
  • 9009ab8dce1b:第一种方法为什么在传入的时间是当前时间的几小时前时一直计算不对啊!timeInterval = -timeInterval; 这句把 timeInterval转不成正数啊。
  • 65ca6cdf6fc1:第一种,为什么要写这一句timeInterval = -timeInterval;
    iOS_愛OS:@Janet_Aries NSTimeInterval timeInterval = [timeDate timeIntervalSinceNow]; 这句话意思是从现在到后台传来的时间一共有多久,时间是x坐标轴,现在是原点,而后台传过来的时间在原点左边为负数,所以这个时间段是负的,这里我的目的是取绝对值所以给他加了个负号!
    手机打字,不是很方便,还是不懂得话我回去用电脑回你!
  • d0b9092b1178:我想问,第二种,你弄了一半东西,那个model是什么呢,看的不明白
    iOS_愛OS:不要局限于代码,这个model存的是后台接口得到的字典,这个字典里有我们需要转化的时间值也就是时间戳!
    我们的任务就是把时间戳转换成时分秒!
  • Taoist:太棒了,楼主。
  • 87e912b47ff4:谢谢作者了
  • 3cfe940c3d70:错的,第二种
    iOS_愛OS:今天又测了下,代码没问题
    defef388b4fa:@iOS_愛OS 哪里要除以1000啊??求指教??
    iOS_愛OS: @一夜如凉 第二种要除以1000

本文标题:iOS-两种时间格式实现几天前,几小时前,几分钟前

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