国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS 驗證碼按鈕倒計時功能

2020-07-26 02:44:33
字體:
供稿:網(wǎng)友

在app 注冊或者登錄 需要驗證碼的地方、為了避免短時間內(nèi)刷驗證碼、往往會加上一層驗證。

倒計時結(jié)束后、可以重新獲取!

代碼實現(xiàn)如下:

// _CountdownTime 倒計時總時間;//_timer 定時器- (void)startTime:(UIButton *)VerificationCodeButton { __block NSInteger timeout = [_CountdownTime integerValue]; dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); _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(), ^{    [VerificationCodeButton setTitle:@"重新獲取" forState:UIControlStateNormal];    VerificationCodeButton.userInteractionEnabled = YES;    VerificationCodeButton.alpha = 1.0;    VerificationCodeButton.backgroundColor = [UIColor whiteColor];   });  } else {   NSString *strTime = [NSString stringWithFormat:@"%lds", (long)timeout];   dispatch_async(dispatch_get_main_queue(), ^{    [VerificationCodeButton setTitle:strTime forState:UIControlStateNormal];    VerificationCodeButton.userInteractionEnabled = NO;    VerificationCodeButton.backgroundColor = [UIColor lightTextColor];   });   timeout--;  } }); dispatch_resume(_timer);}

總結(jié)

以上所述是小編給大家介紹的iOS 驗證碼按鈕倒計時功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對武林網(wǎng)網(wǎng)站的支持!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 周宁县| 宁安市| 太原市| 尼木县| 赣州市| 景东| 时尚| 高碑店市| 庆城县| 乌苏市| 龙海市| 玉林市| 根河市| 大方县| 扬中市| 舞钢市| 望江县| 嘉荫县| 山丹县| 阳朔县| 兴化市| 衡东县| 平泉县| 资源县| 高要市| 大兴区| 敖汉旗| 建湖县| 南乐县| 洞头县| 永年县| 苏尼特左旗| 和林格尔县| 溧水县| 新泰市| 丹巴县| 外汇| 山丹县| 临猗县| 保康县| 西青区|