获取验证码,解决重复发送验证码问题

2016-07-08  本文已影响1368人  yuwei66

现在越来越多的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];
}```
   * 自动倒计时

[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 ,现在就可以实现了,有需要的小伙伴可以试试。
上一篇下一篇

猜你喜欢

热点阅读