现在越来越多的app用到获取短信验证注册或登陆,但是随之而来的有个问题,如果我每次点击获取验证码,未到60秒,我点击返回按钮之后,再push进来,这个界面的倒计时是不是又跟没有按之前一个样,但是后台短信就已经发出去了啊。如果恶意来使用短信接口的话,那公司的短信费是不是又增加了呢?所以我们今天来学习怎样避免我pop回去之后,再push进来,保证我的获取验证码还在正常运行。文章学习自song hai liang 的demo。如有不妥,请联系我。
我们需要来封装一个定时器的类,类方法包括开启倒计时、自动倒计时、取消倒计时。
- 变量、常量
/**
* Timer开始时间
* 处理第二次进入View时自动进行倒计时显示
*/
static NSMutableDictionary *timerIntervals;
/**
* 启动的Timer实例数组
* 目前只用到短信发送倒计时功能上
*/
static NSMutableDictionary *timers;
/**
* 验证码倒计时(单位:秒)
*/
const int kVerifyCodeCountDownSeconds = 60;
- 单例
+(double)timeIntervalForKey:(NSString *)timerKey {
if (timerIntervals && [timerIntervals objectForKey:timerKey] != [NSNull null]) {
return [[timerIntervals objectForKey:timerKey] doubleValue];
}
return 0;
}
- 开启倒计时
+ (dispatch_source_t)startTimerWithKey:(NSString *)timerKey tipLabel:(UILabel *)tipLabel {
//记录timer开始时间
if (!timerIntervals) {
timerIntervals = [NSMutableDictionary dictionaryWithCapacity:10];
}
if (!timers) {
timers = [NSMutableDictionary dictionaryWithCapacity:10];
}
[timerIntervals setObject:@(CFAbsoluteTimeGetCurrent()) forKey:timerKey];
//如果之前的timer存在,则将其cancel
[self cancelTimerByKey:timerKey];
return [self timerCountDownWithKey:timerKey tipLabel:tipLabel forceStart:YES];
}```
* 自动倒计时
-
(dispatch_source_t)timerCountDownWithKey:(NSString *)timerKey tipLabel:(UILabel *)tipLabel forceStart:(BOOL)forceStart {
__block int timeout=0; //倒计时时间
//调用startTimerWithKey方法会记录timer开始时间,如果没有timer开始时间则不开启新timer
double timerInterval = [self timeIntervalForKey:timerKey];if (timerInterval <= 0) {
return nil;
}double interval = CFAbsoluteTimeGetCurrent() - timerInterval;
if (interval < kVerifyCodeCountDownSeconds) {
timeout = kVerifyCodeCountDownSeconds - (int)interval - 1;
}if (timeout <= 0 && !forceStart) {
return nil;
}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_walltime(NULL, 0),1.0*NSEC_PER_SEC, 0); //每秒执行
dispatch_source_set_event_handler(_timer, ^{
if(timeout<=0){ //倒计时结束,关闭 dispatch_source_cancel(_timer); dispatch_async(dispatch_get_main_queue(), ^{ //设置界面的按钮显示 根据自己需求设置 tipLabel.text = @"重新获取验证码"; tipLabel.backgroundColor = [UIColor colorWithRed:200/255.0 green:34/255.0 blue:34/255.0 alpha:1.0]; tipLabel.userInteractionEnabled = YES; }); }else{ // int minutes = timeout / 60; int seconds = timeout % kVerifyCodeCountDownSeconds; NSString *strTime = [NSString stringWithFormat:@"%.2d", seconds]; dispatch_async(dispatch_get_main_queue(), ^{ //设置界面的按钮显示 根据自己需求设置 tipLabel.text = [NSString stringWithFormat:@"%@秒后重新发送",strTime]; tipLabel.backgroundColor = [UIColor colorWithRed:204/255.0 green:204/255.0 blue:204/255.0 alpha:1.0]; tipLabel.userInteractionEnabled = NO; }); timeout--; }
});
dispatch_resume(_timer);
[timers setObject:_timer forKey:timerKey];
return _timer;
}
* 取消倒计时
+(void)cancelTimerByKey:(NSString *)timerKey {
dispatch_source_t timer = [timers objectForKey:timerKey];
if (timer) {
dispatch_source_cancel(timer);
[timers removeObjectForKey:timerKey];
}
}
好了,接下来就是我们该怎么调用了。
1、 自动启动timer
[TimerHelper timerCountDownWithKey:kTimerKeyRegister tipLabel:self.timerLabel forceStart:NO];
2、 取消timer
[TimerHelper cancelTimerByKey:kTimerKeyRegister];
3、发送验证码
[TimerHelper startTimerWithKey:kTimerKeyRegister tipLabel:self.timerLabel];
//TODO:一般都是调用服务端发送验证码接口,上面这行代码应该放到调用接口成功返回后再执行
ok ,现在就可以实现了,有需要的小伙伴可以试试。
网友评论