封装按钮倒计时,一行代码实现后台也能倒计时
一般登录注册都会有发送验证码的功能,首先实现该功能,我们需要做什么?
1.点击按钮,发送验证码,开始倒计时,按钮不可点击,以防暴力点击;
2.倒计时结束,按钮恢复点击事件;
Tip:这里我们做的需求里又需要app进入后台,倒计时可以继续~~~
3.app进入后台,倒计时可以继续。
这里实现思路是:创建button的分类,新增一个方法,一行代码实现以上所有的功能;使用GCD信号量来做按钮倒计时,实现app进入后台也可以继续倒计时,而且倒计时不会出现乱序的情况。好了,不多说了,直接上代码!!!
~~~~~~~~~~~~~~~~~~~~~~~~~~这是条分割线~~~~~~~~~~~~~~~~~~~~~~~~~~
是不是以为结束了?当然会提供一份手敲代码啦,哈哈哈~~~
- (void)startWithTime:(NSInteger)timeLine title:(NSString *)title countDownTitle:(NSString *)subTitle {
//倒计时时间
__block NSInteger timeout = timeLine;
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);
//设置这个,进入后台也可以倒计时
NSDate *endTime = [NSDate dateWithTimeIntervalSinceNow:timeout];
dispatch_source_set_event_handler(_timer, ^{
int interval = [endTime timeIntervalSinceNow];
//倒计时结束,关闭
if(interval <= 0) {
dispatch_source_cancel(_timer);
dispatch_async(dispatch_get_main_queue(), ^{
self.enabled = YES;
[self setTitle:title forState:UIControlStateNormal];
});
}else {
int allTime = (int)timeLine + 1;
int seconds = interval % allTime;
NSString *timeStr = [NSString stringWithFormat:@"重新发送(%0.2d)",seconds];
dispatch_async(dispatch_get_main_queue(), ^{
[self setTitle:[NSString stringWithFormat:@"%@%@",timeStr,subTitle] forState:UIControlStateNormal];
self.enabled = NO;
});
timeout --;
} });
dispatch_resume(_timer);
}
结语:有什么不对的地方请指正,谢谢!觉得有用的同学可以点个赞哦,一起学习,一起成长!