倒計時

- (id)initTerminalWithFrame:(CGRect)frame startTime:(NSInteger)startTime type:(TimeStyle)type {

self= [superinitWithFrame:frame];

if(self) {

self.style= type;

self.startTime= startTime;

self.timeLb= [[UILabelalloc]initWithFrame:self.bounds];

self.timeLb.text=self.style==kDefaultStyle?@"00 : 00 : 00":@"00天00 : 00 : 00";

self.timeLb.adjustsFontSizeToFitWidth=YES;

self.layerViews= [NSMutableArrayarray];

NSIntegerlayerNumber =self.style==kDefaultStyle?3:4;

CGFloatlayerW =self.style==kDefaultStyle?self.bounds.size.width/4.5:self.bounds.size.width/6.0;

CGFloatmargin = (self.bounds.size.width- layerNumber * layerW)/(layerNumber *1.0-1);

CGFloatstartX =0;

for(inti =0; i < layerNumber; i ++) {

if(self.style==kDayStyle) {

startX += i ==1? layerW + margin +5: layerW + margin -3;

}else{

startX += layerW + margin;

}

if(i ==0) {

startX =0;

}

UIView*layer = [[UIViewalloc]initWithFrame:CGRectMake(startX,self.bounds.size.height*0.25, layerW,self.bounds.size.height*0.5)];

[selfaddSubview:layer];

[self.layerViewsaddObject:layer];

}

[selfaddSubview:self.timeLb];

self.timer= [NSTimerscheduledTimerWithTimeInterval:1.0target:selfselector:@selector(timerFireMethod:)userInfo:nilrepeats:YES];

}

returnself;

}

- (void)setTextColor:(UIColor*)textColor {

if(self.textColor!= textColor) {

_textColor= textColor;

self.timeLb.attributedText= [selfattributedStringWithText:self.timeLb.text];

}

}

- (void)setLayerColor:(UIColor*)layerColor {

if(self.layerColor!= layerColor) {

_layerColor= layerColor;

for(UIView*subVinself.layerViews) {

subV.backgroundColor= layerColor;

}

}

}

- (void)setTimeColor:(UIColor*)timeColor {

if(self.timeColor!= timeColor) {

_timeColor= timeColor;

self.timeLb.textColor= timeColor;

}

}

- (void)setTextFont:(UIFont*)textFont {

if(self.textFont!= textFont) {

_textFont= textFont;

self.timeLb.font= textFont;

}

}

staticboolisCaculating =YES;

- (void)timerFireMethod:(NSTimer*)theTimer {

NSCalendar*cal = [NSCalendarcurrentCalendar];//定義一個NSCalendar對象

NSDateComponents*endTime = [[NSDateComponentsalloc]init];//初始化目標(biāo)時間...

NSDate*today = [NSDatedate];//得到當(dāng)前時間

NSDate*date = [NSDatedateWithTimeIntervalSince1970:self.startTime];

NSDateFormatter*dateFormatter = [[NSDateFormatteralloc]init];

[dateFormattersetDateFormat:@"yyyy-MM-dd HH:mm:ss"];

NSTimeZone*timeZone = [NSTimeZonetimeZoneWithName:@"Asia/Shanghai"];

[dateFormattersetTimeZone:timeZone];

NSString*dateString = [dateFormatterstringFromDate:date];

staticintyear;

staticintmonth;

staticintday;

staticinthour;

staticintminute;

staticintsecond;

year = [[dateStringsubstringWithRange:NSMakeRange(0,4)]intValue];

month = [[dateStringsubstringWithRange:NSMakeRange(5,2)]intValue];

day = [[dateStringsubstringWithRange:NSMakeRange(8,2)]intValue];

hour = [[dateStringsubstringWithRange:NSMakeRange(11,2)]intValue];

minute = [[dateStringsubstringWithRange:NSMakeRange(14,2)]intValue];

second = [[dateStringsubstringWithRange:NSMakeRange(17,2)]intValue];

[endTimesetYear:year];

[endTimesetMonth:month];

[endTimesetDay:day];

[endTimesetHour:hour];

[endTimesetMinute:minute];

[endTimesetSecond:second];

NSDate*todate = [caldateFromComponents:endTime];//把目標(biāo)時間裝載入date

//用來得到具體的時差,是為了統(tǒng)一成北京時間

unsignedintunitFlags =NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay|NSCalendarUnitHour|NSCalendarUnitMinute|NSCalendarUnitSecond;

NSDateComponents*d = [calcomponents:unitFlagsfromDate:todaytoDate:todateoptions:0];

NSString*fen = [NSStringstringWithFormat:@"%ld", [dminute]];

if([dminute] <10) {

fen = [NSStringstringWithFormat:@"0%ld",[dminute]];

}

NSString*miao = [NSStringstringWithFormat:@"%ld", [dsecond]];

if([dsecond] <10) {

miao = [NSStringstringWithFormat:@"0%ld",[dsecond]];

}

if([dsecond] >=0) {

//計時尚未結(jié)束泌豆,do_something

self.timeLb.text=self.style==kDefaultStyle?

[NSStringstringWithFormat:@"%02ld : %02ld : %02ld",d.hour,d.minute,d.second]

: [NSStringstringWithFormat:@"%02ld天%02ld : %02ld : %02ld",d.day,d.hour,d.minute,d.second];

}elseif([dsecond] ==0){

//計時尚結(jié)束终议,do_something

self.timeLb.text=self.style==kDefaultStyle?

[NSStringstringWithFormat:@"%02ld : %02ld : %02ld",d.hour,d.minute,d.second]

: [NSStringstringWithFormat:@"%02ld天%02ld : %02ld : %02ld",d.day,d.hour,d.minute,d.second];

}else{

[theTimerinvalidate];

self.timeLb.text=self.style==kDefaultStyle?

@"00 : 00 : 00":@"00天00 : 00 : 00";

}

self.timeLb.attributedText= [selfattributedStringWithText:self.timeLb.text];

}

- (void)changeAttributedOtherStringFontAndColorInRange:(NSRange)range attributedString:(NSMutableAttributedString*)attributedStr {

[attributedStraddAttribute:NSForegroundColorAttributeNamevalue:self.textColorrange:range];

}

- (NSMutableAttributedString*)attributedStringWithText:(NSString*)text {

NSMutableAttributedString*attributedString = [[NSMutableAttributedStringalloc]initWithString:text];

CGFloatstartLocation =2;

[selfchangeAttributedOtherStringFontAndColorInRange:NSMakeRange(startLocation,3)attributedString:attributedString];

[selfchangeAttributedOtherStringFontAndColorInRange:NSMakeRange(startLocation +5,3)attributedString:attributedString];

if(self.style==kDayStyle) {

[selfchangeAttributedOtherStringFontAndColorInRange:NSMakeRange(startLocation +10,3)attributedString:attributedString];

}

returnattributedString;

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末铭污,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子官还,更是在濱河造成了極大的恐慌饶氏,老刑警劉巖讥耗,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異疹启,居然都是意外死亡古程,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門喊崖,熙熙樓的掌柜王于貴愁眉苦臉地迎上來挣磨,“玉大人,你說我怎么就攤上這事荤懂∽氯梗” “怎么了?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵节仿,是天一觀的道長晤锥。 經(jīng)常有香客問我,道長廊宪,這世上最難降的妖魔是什么矾瘾? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮箭启,結(jié)果婚禮上霜威,老公的妹妹穿的比我還像新娘。我一直安慰自己册烈,他們只是感情好戈泼,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著赏僧,像睡著了一般大猛。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上淀零,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天挽绩,我揣著相機(jī)與錄音,去河邊找鬼驾中。 笑死唉堪,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的肩民。 我是一名探鬼主播唠亚,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼持痰!你這毒婦竟也來了灶搜?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎割卖,沒想到半個月后前酿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡鹏溯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年罢维,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片丙挽。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡言津,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出取试,到底是詐尸還是另有隱情悬槽,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布瞬浓,位于F島的核電站初婆,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏猿棉。R本人自食惡果不足惜磅叛,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望萨赁。 院中可真熱鬧弊琴,春花似錦、人聲如沸杖爽。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽慰安。三九已至腋寨,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間化焕,已是汗流浹背萄窜。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留撒桨,地道東北人查刻。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像凤类,于是被迫代替她去往敵國和親穗泵。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容