獲取時間字串,然後根據「-」將其分開,陣列一是時間值,陣列二是時間值的顏色。
nsstring *tempstr = [self getovertime:time];
nsarray *temparray = [tempstr componentsseparatedbystring:@"-"];
_datastr = [temparray objectatindex:0];
nsstring *_colortype = [temparray objectatindex:1];
//將時間資料(毫秒)轉換為天和小時
- (nsstring*)getovertime:(nsstring*)mstr
nsinteger d = msec/1000/60/60/24;
nsinteger h = msec/1000/60/60%24;
//nsinteger m = msec/1000/60%60;
//nsinteger s = msec/1000%60;
nsstring *_tstr = @"";
nsstring *_dstr = @"";
nsstring *_hstr = @"";
nsstring *_htimetype = @"defaultcolor";
if (d > 0)
if (h > 0)
//小於2小時 高亮顯示
if (h > 0 && h < 2)
_tstr = [nsstring stringwithformat:@"%@%@後到期-%@",_dstr,_hstr,_htimetype];
return _tstr;
}
mysql將毫秒轉換為小時 將毫秒轉換為天小時分鐘
今天在專案中遇到進行計算流程單從開始到結束所花費的時間,樣式是xx天xx小時xx秒,有天顯示天,沒有就不顯示 獻上 package com.project.model.work public class dateformat 將毫秒轉化為天時分秒毫秒 public static string for...
oracle 將天數 1 366 轉換為日期
在平時的應用中,我們很多地方都使用了日期函式to date 但是我們對日期函式的格式知道得很少,或者說我們根本就不會去研究它 然而,知道日期格式是多麼的重要 下面是乙個具體的應用 有一張表,有年字段year,時期欄位type,期數term,如下 id year type term 1 2010 r ...
毫秒轉換為天 小時 分 秒
param 要轉換的毫秒數 return 該毫秒數轉換為 days hours minutes seconds 後的格式 author fy.zhang public static string formatduring long mss param begin 時間段的開始 param end 時...