開源中國iOS用戶端學習——(九)程式碼片段之時間標記

來源:互聯網
上載者:User

開源中國用戶端中無論是綜合裡面文章,還是問答裡問題還是動彈離得說說,每一條後面都會注釋有時間,比如“10分鐘之前”  “2小時前” “5天前” 或者直接是時間顯示“2013-2-9”等,這些時間在很多應用裡都是必須的,為的是給使用者一個時間感,知道資訊是最新的,也方便根據時間查閱以往資訊;

    

這些時間從API解析下來的時間格式都為 yyyy-MM-dd HH:mm:ss(比如:2013-03-09 09:51:22),通過在API上擷取文章時間後經過演算法轉換而得到,在用戶端源碼的Tool.m中+ (NSString *)intervalSinceNow: (NSString *) theDate 實現這一個方法: 如果資訊發表在1小時之前顯示分鐘,一天之內的資訊顯示小時,10天之內按天顯示,10天之外安所發表時間進行顯示:

+ (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;//    發表在一小時之內    if (cha/3600<1) {        if (cha/60<1) {            timeString = @"1";        }        else        {            timeString = [NSString stringWithFormat:@"%f", cha/60];            timeString = [timeString substringToIndex:timeString.length-7];        }                timeString=[NSString stringWithFormat:@"%@分鐘前", timeString];    }//    在一小時以上24小以內    else if (cha/3600>1&&cha/86400<1) {        timeString = [NSString stringWithFormat:@"%f", cha/3600];        timeString = [timeString substringToIndex:timeString.length-7];        timeString=[NSString stringWithFormat:@"%@小時前", timeString];    }//    發表在24以上10天以內    else if (cha/86400>1&&cha/864000<1)    {        timeString = [NSString stringWithFormat:@"%f", cha/86400];        timeString = [timeString substringToIndex:timeString.length-7];        timeString=[NSString stringWithFormat:@"%@天前", timeString];    }//    發表時間大於10天    else    {//        timeString = [NSString stringWithFormat:@"%d-%"]        NSArray *array = [theDate componentsSeparatedByString:@" "];//        return [array objectAtIndex:0];        timeString = [array objectAtIndex:0];    }    return timeString;}

這段代碼可以用到自己工程裡直接就可以用了,返回的timeString即為需時間段時間;

Demo:https://github.com/XFZLDXF/MyDemo.git

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.