大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
- (void)yourButtonTitleTime
成都创新互联公司专业为企业提供曲松网站建设、曲松做网站、曲松网站设计、曲松网站制作等企业网站建设、网页设计与制作、曲松企业网站模板建站服务,10余年曲松做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
{
__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_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(), ^{
//设置界面的按钮显示 根据自己需求设置
verBut.userInteractionEnabled = YES;
});
}else{
dispatch_async(dispatch_get_main_queue(), ^{
//设置界面的按钮显示 根据自己需求设置
[verBut setTitle:(timeout==0?@"重发":[NSString stringWithFormat:@"%d",timeout]) forState:UIControlStateNormal];
verBut.userInteractionEnabled = timeout==0?YES:NO;
});
timeout--;
}
});
dispatch_resume(_timer);
}