中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
iOS根據(jù)日期判斷是剛剛、幾分鐘前、幾小時(shí)前等的代碼片段

參考github源碼中的一個(gè)格式化字符串的源碼,

是NSDate的一個(gè)擴(kuò)展方法:

  1. /** 
  2.  * Given the reference date and return a pretty date string to show 
  3.  * 
  4.  * @param refrence the date to refrence 
  5.  * 
  6.  * @return a pretty date string, like "just now", "1 minute ago", "2 weeks ago", etc 
  7.  */  
  8. - (NSString *)prettyDateWithReference:(NSDate *)reference {  
  9.   NSString *suffix = @"ago";  
  10.     
  11.   float different = [reference timeIntervalSinceDate:self];  
  12.   if (different < 0) {  
  13.     different = -different;  
  14.     suffix = @"from now";  
  15.   }  
  16.     
  17.   // days = different / (24 * 60 * 60), take the floor value  
  18.   float dayDifferent = floor(different / 86400);  
  19.     
  20.   int days   = (int)dayDifferent;  
  21.   int weeks  = (int)ceil(dayDifferent / 7);  
  22.   int months = (int)ceil(dayDifferent / 30);  
  23.   int years  = (int)ceil(dayDifferent / 365);  
  24.     
  25.   // It belongs to today  
  26.   if (dayDifferent <= 0) {  
  27.     // lower than 60 seconds  
  28.     if (different < 60) {  
  29.       return @"just now";  
  30.     }  
  31.       
  32.     // lower than 120 seconds => one minute and lower than 60 seconds  
  33.     if (different < 120) {  
  34.       return [NSString stringWithFormat:@"1 minute %@", suffix];  
  35.     }  
  36.       
  37.     // lower than 60 minutes  
  38.     if (different < 660 * 60) {  
  39.       return [NSString stringWithFormat:@"%d minutes %@", (int)floor(different / 60), suffix];  
  40.     }  
  41.       
  42.     // lower than 60 * 2 minutes => one hour and lower than 60 minutes  
  43.     if (different < 7200) {  
  44.       return [NSString stringWithFormat:@"1 hour %@", suffix];  
  45.     }  
  46.       
  47.     // lower than one day  
  48.     if (different < 86400) {  
  49.       return [NSString stringWithFormat:@"%d hours %@", (int)floor(different / 3600), suffix];  
  50.     }  
  51.   }  
  52.   // lower than one week  
  53.   else if (days < 7) {  
  54.     return [NSString stringWithFormat:@"%d day%@ %@", days, days == 1 ? @"" : @"s", suffix];  
  55.   }  
  56.   // lager than one week but lower than a month  
  57.   else if (weeks < 4) {  
  58.     return [NSString stringWithFormat:@"%d week%@ %@", weeks, weeks == 1 ? @"" : @"s", suffix];  
  59.   }  
  60.   // lager than a month and lower than a year  
  61.   else if (months < 12) {  
  62.     return [NSString stringWithFormat:@"%d month%@ %@", months, months == 1 ? @"" : @"s", suffix];  
  63.   }  
  64.   // lager than a year  
  65.   else {  
  66.     return [NSString stringWithFormat:@"%d year%@ %@", years, years == 1 ? @"" : @"s", suffix];  
  67.   }  
  68.     
  69.   return self.description;  
  70. }  


本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
NSString與int和float的相互轉(zhuǎn)換
iOS---------金額轉(zhuǎn)大寫(xiě)
OC 常用數(shù)據(jù)類(lèi)型之間的轉(zhuǎn)換
數(shù)據(jù)庫(kù) ios
C語(yǔ)言編程 有一篇文章,共有3行文字,每行80個(gè)字符。要求分別統(tǒng)計(jì)出其中英文字母,數(shù)字,空...
Java數(shù)字轉(zhuǎn)中文大寫(xiě),數(shù)字轉(zhuǎn)英文
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服