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

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

iOS 驗(yàn)證碼按鈕倒計(jì)時(shí)功能

2019-10-21 18:45:15
字體:
供稿:網(wǎng)友

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

ios,驗(yàn)證碼倒計(jì)時(shí),驗(yàn)證碼按鈕倒計(jì)時(shí)

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

ios,驗(yàn)證碼倒計(jì)時(shí),驗(yàn)證碼按鈕倒計(jì)時(shí)

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

// _CountdownTime 倒計(jì)時(shí)總時(shí)間;//_timer 定時(shí)器- (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 驗(yàn)證碼按鈕倒計(jì)時(shí)功能,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)VEVB武林網(wǎng)網(wǎng)站的支持!


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到IOS開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 兴和县| 会同县| 抚松县| 合江县| 六枝特区| 建宁县| 当涂县| 沙雅县| 远安县| 义马市| 皮山县| 宣武区| 蚌埠市| 泗水县| 加查县| 固安县| 建宁县| 于都县| 尤溪县| 呼玛县| 屏南县| 景东| 富源县| 安达市| 长阳| 久治县| 金沙县| 会昌县| 永德县| 将乐县| 郴州市| 班玛县| 前郭尔| 霍林郭勒市| 绩溪县| 即墨市| 霞浦县| 灵丘县| 涪陵区| 天长市| 和政县|