码迷,mamicode.com
首页 > 移动开发 > 详细

ios 简单的倒计时验证码数秒过程实现

时间:2014-11-26 20:32:57      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:io   ar   color   os   sp   for   on   div   art   

  1. timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES];  
  1. //倒计时方法验证码实现倒计时60秒,60秒后按钮变换开始的样子  
  2. -(void)timerFireMethod:(NSTimer *)theTimer {  
  3.     if (seconds == 1) {  
  4.         [theTimer invalidate];  
  5.         seconds = 60;  
  6.         [validCodeBtn_ setTitle:@"获取验证码" forState: UIControlStateNormal];  
  7.         [validCodeBtn_ setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];  
  8.         [validCodeBtn_ setEnabled:YES];  
  9.     }else{  
  10.         seconds--;  
  11.         NSString *title = [NSString stringWithFormat:MSG_DYNAMIC_CODE_WAIT,seconds];  
  12.         [validCodeBtn_ setTitleColor:[UIColor grayColor] forState:UIControlStateNormal];  
  13.         [validCodeBtn_ setEnabled:NO];  
  14.         [validCodeBtn_ setTitle:title forState:UIControlStateNormal];  
  15.     }  
  16. }  
  17. //如果登陆成功,停止验证码的倒数,  
  18. - (void)releaseTImer {  
  19.     if (timer) {  
  20.         if ([timer respondsToSelector:@selector(isValid)]) {  
  21.             if ([timer isValid]) {  
  22.                 [timer invalidate];  
  23.                 seconds = 60;  
  24.             }  
  25.         }  
  26.     }  
  27. }  

ios 简单的倒计时验证码数秒过程实现

标签:io   ar   color   os   sp   for   on   div   art   

原文地址:http://www.cnblogs.com/zhangliukou/p/4124047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!