短信按钮定时器

2018-08-17  本文已影响0人  小緈福

{

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

    num = 60;

    [timer fire];

}

- (void)Timing{

    num--;

    [timeBtn setTitle:[NSString stringWithFormat:@"%d",num] forState:UIControlStateNormal];

    if (num == 0) {

        [timer invalidate];

        timer = nil;

        [timeBtn setTitle:@"重新发送" forState:UIControlStateNormal];

        [forgetView.loginVerificationCodeBtn setEnabled:YES];

    }else{

        [forgetView.loginVerificationCodeBtn setEnabled:NO];

    }

}

上一篇下一篇

猜你喜欢

热点阅读