有些时候我们会用到按钮倒计时的操作,比如发送验证码或者短信后需要倒计时的显示,该怎么写呢,有人用定时器,有人用GCD,但是定时器占用线程资源比较大,而且需要手动操作。GCD 完全自动释放,骚年,你还在等什么?😏
下面的就是用GCD的方法:Button点击的时候调用这个方法就可以了!
- (void)startCountDownAction{
//开始倒计时
__block NSInteger time = 59; //倒计时时间
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(time <= 0){ //倒计时结束,关闭
dispatch_source_cancel(_timer);
dispatch_async(dispatch_get_main_queue(), ^{
//设置按钮的样式
[self.codeButton setTitle:@"重新发送" forState:UIControlStateNormal];
[self.codeButton setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];
self.codeButton.userInteractionEnabled = YES;
});
}else{
int seconds = time % 60;
dispatch_async(dispatch_get_main_queue(), ^{
//设置按钮显示读秒效果
[self.codeButton setTitle:[NSString stringWithFormat:@"重新发送(%.2d)", seconds] forState:UIControlStateNormal];
[self.codeButton setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
self.codeButton.userInteractionEnabled = NO;
});
time--;
}
});
dispatch_resume(_timer);
我就是个天才
生命的意义在于交流和分享,谢谢大家喜欢。