现在的位置: 首页 > 综合 > 正文

IOS——NSDate昨天、今天、明天

2018年02月02日 ⁄ 综合 ⁄ 共 1018字 ⁄ 字号 评论关闭
-(NSString *)friendlyTime:(NSString *)datetime
{
    time_t current_time = time(NULL);
    
    static NSDateFormatter *dateFormatter =nil;
    if (dateFormatter == nil) {
        dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
        dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0];
    }
    
    NSDate *date = [dateFormatter dateFromString:datetime];
    NSDate *t_time_ = NSDate.date;
    time_t t_time = [t_time_ timeIntervalSince1970];
    
    time_t this_time = [date timeIntervalSince1970];
    
    time_t delta = current_time - this_time;
    
    if (delta <= 0) {
        return @"刚刚";
    }
    else if (delta <60)
        return [NSString stringWithFormat:@"%ld秒前", delta];
    else if (delta <3600)
        return [NSString stringWithFormat:@"%ld分钟前", delta /60];
    else {
        struct tm tm_now, tm_in;
        localtime_r(&t_time, &tm_now);
        localtime_r(&this_time, &tm_in);
        NSString *format = nil;
        
        if (tm_now.tm_year == tm_in.tm_year) {
            if (tm_now.tm_yday == tm_in.tm_yday)
                format = @"今天 %-H:%M";
            else
                format = @"%-m%-d %-H:%M";
        }
        else
            format = @"%Y%-m%-d %-H:%M";
        
        char buf[256] = {0};
        strftime(buf, sizeof(buf), [format UTF8String], &tm_in);
        return [NSString stringWithUTF8String:buf];
    }
}

抱歉!评论已关闭.