iOS实现倒计时功能

此代码倒计时为60秒

[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES];

 

BOOL timeStart = YES;

上面的代码加入到想开始计时的地方

下面是回调方法

- (void)timerFireMethod:(NSTimer *)theTimer

{

    NSCalendar *cal = [NSCalendar currentCalendar];//定义一个NSCalendar对象

    NSDateComponents *endTime = [[NSDateComponents allocinit];    //初始化目标时间...

    NSDate *today = [NSDate date];    //得到当前时间

    

    NSDate *date = [NSDate dateWithTimeInterval:60 sinceDate:today];

    NSDateFormatter *dateFormatter = [[NSDateFormatter allocinit];

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

    NSString *dateString = [dateFormatter stringFromDate:date];

    

    static int year;

    static int month;

    static int day;

    static int hour;

    static int minute;

    static int second;

    if(timeStart) {//从NSDate中取出年月日,时分秒,但是只能取一次

        year = [[dateString substringWithRange:NSMakeRange(04)] intValue];

        month = [[dateString substringWithRange:NSMakeRange(52)] intValue];

        day = [[dateString substringWithRange:NSMakeRange(82)] intValue];

        hour = [[dateString substringWithRange:NSMakeRange(112)] intValue];

        minute = [[dateString substringWithRange:NSMakeRange(142)] intValue];

        second = [[dateString substringWithRange:NSMakeRange(172)] intValue];

        timeStartNO;

    }

    

    [endTime setYear:year];

    [endTime setMonth:month];

    [endTime setDay:day];

    [endTime setHour:hour];

    [endTime setMinute:minute];

    [endTime setSecond:second];

    NSDate *todate = [cal dateFromComponents:endTime]; //把目标时间装载入date

    [endTime release];

    

    //用来得到具体的时差,是为了统一成北京时间

    unsigned int unitFlags = NSYearCalendarUnitNSMonthCalendarUnitNSDayCalendarUnitNSHourCalendarUnitNSMinuteCalendarUnitNSSecondCalendarUnit;

    NSDateComponents *d = [cal components:unitFlags fromDate:today toDate:todate options:0];

    NSString *fen = [NSStringstringWithFormat:@"%d", [d minute]];

    if([d minute] < 10) {

        fen = [NSStringstringWithFormat:@"0%d",[d minute]];

    }

    NSString *miao = [NSStringstringWithFormat:@"%d", [d second]];

    if([d second] < 10) {

        miao = [NSStringstringWithFormat:@"0%d",[d second]];

    }


    if([d second] > 0) {

        

           //计时尚未结束,do_something


    } elseif([d second] == 0) {

        

       //计时1分钟结束,do_something

        

    } else{

        [theTimer invalidate];

    }

    

}

你可能感兴趣的:(iOS实现倒计时功能)