iOS中怎么实现短信验证码倒计时-创新互联

这期内容当中小编将会给大家带来有关iOS中怎么实现短信验证码倒计时,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

创新互联公司-专业网站定制、快速模板网站建设、高性价比睢阳网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式睢阳网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖睢阳地区。费用合理售后完善,十年实体公司更值得信赖。

一、利用NSTimer计时器

1.新建一个UIButton按钮,设置成属性,名为codeButton。(UIButton样式一定要为自定义,否则后面倒计时数秒时会出现闪烁现象)

2.定义一个NSTimer的属性,名为timer,同时定义一个用于计时的int变量time,设置初始值为60。

//启动一个定时器self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(operatePerSecond) userInfo:nil repeats:YES];//实现定时器中的方法- (void)operatePerSecond {    if (time == 1) {      [self.timer invalidate];      time = 60;      [self.codeButton setTitle:@"重新获取" forState:UIControlStateNormal];      self.codeButton.tintColor = [UIColor blackColor];      self.codeButton.enabled = YES;    }else {      time --;      [self.codeButton setTitle:[NSString stringWithFormat:@"%ds" ,time] forState:UIControlStateNormal];    }}

3.此时主要逻辑已经完成,但要记得:在本页面即将消失的时候也要停掉计时器self.timer。

二、利用GCD实现

1.定义一个用于计时的time(此时要用block修饰)---block int time = 60;

//倒计时时间  __block int timeout = 60;  dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);  dispatch_source_t timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);  dispatch_source_set_timer(timer, DISPATCH_TIME_NOW, 1.0 * NSEC_PER_SEC, 0 * NSEC_PER_SEC);  dispatch_source_set_event_handler(timer, ^{    if(timeout == 1){      //倒计时结束,关闭      dispatch_source_cancel(timer);      dispatch_async(dispatch_get_main_queue(), ^{      timeout = 60;      [self.codeButton setTitle:@"重新获取" forState:UIControlStateNormal];      self.codeButton.tintColor = [UIColor blackColor];      self.codeButton.enabled = YES;      });    }else{      NSString *strTime = [NSString stringWithFormat:@"%ds",timeout];      dispatch_async(dispatch_get_main_queue(), ^{        [self.codeButton setTitle:strTime forState:UIControlStateNormal];      });      timeout--;    }  });dispatch_resume(timer);

上述就是小编为大家分享的iOS中怎么实现短信验证码倒计时了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注创新互联行业资讯频道。

分享题目:iOS中怎么实现短信验证码倒计时-创新互联
分享路径:https://www.cdcxhl.com/article2/cosiic.html

成都网站建设公司_创新互联,为您提供网站改版App设计微信公众号外贸网站建设搜索引擎优化网站排名

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都做网站