IOS开发代码分享之用nstimer实现倒计时功能

2016-02-19 11:30 31 1 收藏

清醒时做事,糊涂时读书,大怒时睡觉,无聊时关注图老师为大家准备的精彩内容。下面为大家推荐IOS开发代码分享之用nstimer实现倒计时功能,无聊中的都看过来。

【 tulaoshi.com - 编程语言 】

用nstimer实现倒计时功能,废话不多说,直接上代码,详细解释请参照注释

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)
// [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES];  // - (void)timerFireMethod:(NSTimer *)theTimer {     BOOL timeStart = YES;     NSCalendar *cal = [NSCalendar currentCalendar];//定义一个NSCalendar对象     NSDateComponents *endTime = [[NSDateComponents alloc] init];    //初始化目标时间...     NSDate *today = [NSDate date];    //得到当前时间          NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];     [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];     NSDate *dateString = [dateFormatter dateFromString:todate];     NSString *overdate = [dateFormatter stringFromDate:dateString]; //    NSLog(@"overdate=%@",overdate);     static int year;     static int month;     static int day;     static int hour;     static int minute;     static int second;     if(timeStart) {//从NSDate中取出年月日,时分秒,但是只能取一次         year = [[overdate substringWithRange:NSMakeRange(0, 4)] intValue];         month = [[overdate substringWithRange:NSMakeRange(5, 2)] intValue];         day = [[overdate substringWithRange:NSMakeRange(8, 2)] intValue];         hour = [[overdate substringWithRange:NSMakeRange(11, 2)] intValue];         minute = [[overdate substringWithRange:NSMakeRange(14, 2)] intValue];         second = [[overdate substringWithRange:NSMakeRange(17, 2)] intValue];         timeStart= NO;     }          [endTime setYear:year];     [endTime setMonth:month];     [endTime setDay:day];     [endTime setHour:hour];     [endTime setMinute:minute];     [endTime setSecond:second];     NSDate *overTime = [cal dateFromComponents:endTime]; //把目标时间装载入date     //用来得到具体的时差,是为了统一成北京时间     unsigned int unitFlags = NSYearCalendarUnit| NSMonthCalendarUnit| NSDayCalendarUnit| NSHourCalendarUnit| NSMinuteCalendarUnit| NSSecondCalendarUnit;     NSDateComponents *d = [cal components:unitFlags fromDate:today toDate:overTime options:0];     NSString *t = [NSString stringWithFormat:@"%d", [d day]];     NSString *h = [NSString stringWithFormat:@"%d", [d hour]];     NSString *fen = [NSString stringWithFormat:@"%d", [d minute]];     if([d minute]  10) {         fen = [NSString stringWithFormat:@"0%d",[d minute]];     }     NSString *miao = [NSString stringWithFormat:@"%d", [d second]];     if([d second]  10) {         miao = [NSString stringWithFormat:@"0%d",[d second]];     } //    NSLog(@"===%@天 %@:%@:%@",t,h,fen,miao);     [_longtime setText:[NSString stringWithFormat:@"%@天 %@:%@:%@",t,h,fen,miao]];     if([d second]  0) {         //计时尚未结束,do_something //        [_longtime setText:[NSString stringWithFormat:@"%@:%@:%@",d,fen,miao]];     } else if([d second] == 0) {         //计时结束 do_something              } else{ //计时器失效        [theTimer invalidate];     }      }

来源:http://www.tulaoshi.com/n/20160219/1597709.html

延伸阅读
标签: 月子
瑜伽教练教您产后恢复 > 怀孕体重增加了14公斤,生完孩子后仅仅两个月,陈超琪的身材就恢复如初,要知道,她是属于女人最担心身材难恢复的高龄产妇。 陈超琪是一家健身俱乐部的瑜伽教练,她女儿刚刚度过一周岁生日,身体和智力都十分健康。她怀孕的时候已经35岁了,但从孕前准备到最后生产,陈超琪一直是按照自己的方...
利用JavaScript制作倒计时牌 五一劳动节很快就到了。哈哈,到时可以出去好好玩一玩了。是不是在掐指计算了。下面教你一种方法在网页上面制作倒计时牌,这样就方便多了。 把下面的JavaScript代码加入到< body < /body 中即可。 < script language="JavaScript" var urodz= new Date("5/1/2005"); var s="今天离五一劳动...
标签: 怀孕
口腔检查 如果孕期牙齿要是痛起来了,考虑到治疗用药对胎儿的影响,治疗很棘手,受苦的是孕妈妈和宝宝。 准爸爸的4个月预备期:性生活有节制,有规律,可以依照一些优生优育(图老师整理)的书籍来计划未来几个月的性生活时间以及频率。 备孕相关推荐 ...
标签: 怀孕
给自己一个轻松快乐的心情 怀孕只不过是一个正常的生理过程,没有必要把自己搞得神经紧张,严阵以待。充分享受二人世界的甜蜜和温馨吧tulaoshi.com! 准爸爸的1个月预备期:放松心情,可以适当地做几次“演习”,从现在开始,你们可以随时迎来惊喜喔。 备孕相关推荐 ...
标签: 怀孕
制定一份孕前健身计划 对于一直有运动习惯的女性来说,制定一份孕前健身计划的重点在于:最好这个计划可以一直延伸到怀孕后。长期保持适度的运动,对于女性在孕期里的健康是十分重要的, 而对于那些平时就不太爱运动的女性,孕前健身计划就应该选择一项容易坚持、运动强度不大的项目,例如散步、游泳、瑜珈等。 准爸爸9个月的预备期:...

经验教程

250

收藏

52
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部