美文网首页
仿QQ空间发说说的时间显示

仿QQ空间发说说的时间显示

作者: InitWithYou | 来源:发表于2016-11-09 10:50 被阅读375次
起始本人使用的是以下格式输出时间显示的
- (NSString *) compareCurrentTime:(NSString *)str
{
    //把字符串转为NSdate
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:@"Asia/Beijing"];
    [dateFormatter setTimeZone:timeZone];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSDate *timeDate = [dateFormatter dateFromString:str];
    
    //得到与当前时间差
    NSTimeInterval  timeInterval = [timeDate timeIntervalSinceNow];
    timeInterval = -timeInterval;
    long temp = 0;
    NSString *result;
    if (timeInterval < 60) {
        result = [NSString stringWithFormat:@"刚刚"];
    }
    else if((temp = timeInterval/60) <60){
        result = [NSString stringWithFormat:@"%ld分钟前",temp];
    }
    else if((temp = temp/60) <24){
        result = [NSString stringWithFormat:@"%ld小时前",temp];
    }
    else if((temp = temp/24) <30){
        result = [NSString stringWithFormat:@"%ld天前",temp];
    }
    else if((temp = temp/30) <12){
        result = [NSString stringWithFormat:@"%ld月前",temp];
    }
    else{
        temp = temp/12;
        result = [NSString stringWithFormat:@"%ld年前",temp];
    }
    return  result;
}
之后查找资料后发现一种更好的时间格式显示效果,便记录于此。原文于此
- (NSString *)format:(NSString *)string{
    NSDateFormatter *inputFormatter= [[NSDateFormatter alloc] init];
    [inputFormatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] ];
    [inputFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSDate*inputDate = [inputFormatter dateFromString:string];
    //NSLog(@"startDate= %@", inputDate);
    
    NSDateFormatter *outputFormatter= [[NSDateFormatter alloc] init];
    [outputFormatter setLocale:[NSLocale currentLocale]];
    [outputFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    //get date str
    NSString *str= [outputFormatter stringFromDate:inputDate];
    //str to nsdate
    NSDate *strDate = [outputFormatter dateFromString:str];
    //修正8小时的差时
    NSTimeZone *zone = [NSTimeZone systemTimeZone];
    NSInteger interval = [zone secondsFromGMTForDate: strDate];
    NSDate *endDate = [strDate  dateByAddingTimeInterval: interval];
    //NSLog(@"endDate:%@",endDate);
    NSString *lastTime = [self compareDate:endDate];
    NSLog(@"lastTime = %@",lastTime);
    return lastTime;
}
-(NSString *)compareDate:(NSDate *)date{
    
    NSTimeInterval secondsPerDay = 24 * 60 * 60;
    
    //修正8小时之差
    NSDate *date1 = [NSDate date];
    NSTimeZone *zone = [NSTimeZone systemTimeZone];
    NSInteger interval = [zone secondsFromGMTForDate: date1];
    NSDate *localeDate = [date1  dateByAddingTimeInterval: interval];
    
    //NSLog(@"nowdate=%@\nolddate = %@",localeDate,date);
    NSDate *today = localeDate;
    NSDate *yesterday,*beforeOfYesterday;
    //今年
    NSString *toYears;
    
    toYears = [[today description] substringToIndex:4];
    
    yesterday = [today dateByAddingTimeInterval: -secondsPerDay];
    beforeOfYesterday = [yesterday dateByAddingTimeInterval: -secondsPerDay];
    
    // 10 first characters of description is the calendar date:
    NSString *todayString = [[today description] substringToIndex:10];
    NSString *yesterdayString = [[yesterday description] substringToIndex:10];
    NSString *beforeOfYesterdayString = [[beforeOfYesterday description] substringToIndex:10];
    
    NSString *dateString = [[date description] substringToIndex:10];
    NSString *dateYears = [[date description] substringToIndex:4];
    
    NSString *dateContent;
    if ([dateYears isEqualToString:toYears]) {//同一年
        //今 昨 前天的时间
        NSString *time = [[date description] substringWithRange:(NSRange){11,5}];
        //其他时间
        NSString *time2 = [[date description] substringWithRange:(NSRange){5,11}];
        if ([dateString isEqualToString:todayString]){
            dateContent = [NSString stringWithFormat:@"今天 %@",time];
            return dateContent;
        } else if ([dateString isEqualToString:yesterdayString]){
            dateContent = [NSString stringWithFormat:@"昨天 %@",time];
            return dateContent;
        }else if ([dateString isEqualToString:beforeOfYesterdayString]){
            dateContent = [NSString stringWithFormat:@"前天 %@",time];
            return dateContent;
        }else{
            return time2;
        }
    }else{
        return dateString;
    }
}

相关文章

  • 仿QQ空间发说说的时间显示

    起始本人使用的是以下格式输出时间显示的 之后查找资料后发现一种更好的时间格式显示效果,便记录于此。原文于此

  • 高仿QQ的发说说功能

    1.图片选择用到了MLSelectPhoto这个三方库。 2.长按拖拽的cell交换的动画的实现思路当cell(也...

  • 高中—回不去的岁月,追不上的回忆

    昨天晚上偶尔翻开QQ,竟发现已尘封许久,打开久违的空间动态,还有三五个好友依然坚持在QQ空间发说说,进入自己的空间...

  • 总有些没见过却永远埋在心里的人

    心情郁闷于是翻开了QQ空间的说说看看发的说说,以前我不习惯在自己的微信朋友圈或QQ空间发表任何自己心情的文章之类的...

  • QQ空间引流变现赚钱技巧

    QQ空间是非常火爆的地方,完全可以借鉴Q群一样,设置好文案和推广链接。 优点在于:QQ空间一般而言是发说说,说说可...

  • Android 实现类似于QQ空间选择并展示本地图片

    新人刚刚接触android,最近由于项目需求,需要实现类似于QQ空间里的发说说功能,大家都知道说说能发本地图...

  • qq空间为什么没人发说说了?

    今天让大脑放松一下,和天宇兄在图书馆看杂志,看着那些作者写的文章,就回想起自己。细细想来,13年高考完了之后几...

  • 原来,我们都是那般孤独的人

    好久没有进QQ空间看看了。记得那时的我们,只要出了一点小事,或者是心情有点郁闷。都会在QQ空间上发说说,发表...

  • 空间记忆

    整理了一下QQ空间里面的照片,才发现没有2019年的相册。平时发朋友圈时直接@QQ空间,照片全在说说相册里面...

  • 挑战——关闭朋友圈

    从QQ到微信,那么那么多年,以前QQ的时候就超级喜欢发说说,刷QQ空间;到后来微信,就特么喜欢发朋友圈,刷别人的朋...

网友评论

      本文标题:仿QQ空间发说说的时间显示

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