IOS開發代碼分享之用nstimer實現倒計時功能_IOS

來源:互聯網
上載者:User

用nstimer實現倒計時功能,廢話不多說,直接上代碼,詳細解釋請參照注釋

// [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];     }      }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.