美文网首页
短信按钮定时器

短信按钮定时器

作者: 小緈福 | 来源:发表于2018-08-17 14:49 被阅读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];

        }

    }

    相关文章

      网友评论

          本文标题:短信按钮定时器

          本文链接:https://www.haomeiwen.com/subject/nwzzbftx.html