iOS实现短信验证码倒计时
程序员文章站
2023-11-18 17:06:40
在开发中,经常在需要用户注册的时候会需要实现验证码倒计时的功能,下面是解决这个问题的两种思路(使用uibutton控件)
一、利用nstimer计时器
1.新建一个...
在开发中,经常在需要用户注册的时候会需要实现验证码倒计时的功能,下面是解决这个问题的两种思路(使用uibutton控件)
一、利用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);
2.把上述代码写入点击方法中即可实现倒计时效果。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Android实现跨进程接口回掉的方法