中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS 驗證碼按鈕倒計時功能

發布時間:2020-10-16 12:40:43 來源:腳本之家 閱讀:134 作者:鴻鵠當高遠 欄目:移動開發

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

iOS 驗證碼按鈕倒計時功能

倒計時結束后、可以重新獲取!

iOS 驗證碼按鈕倒計時功能

代碼實現如下:

// _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);
}

總結

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浦江县| 虞城县| 青州市| 淮安市| 五指山市| 庆元县| 耿马| 宣汉县| 旬阳县| 盐亭县| 高台县| 平湖市| 昭觉县| 高密市| 永善县| 湟源县| 准格尔旗| 梅州市| 神木县| 浦城县| 康马县| 金山区| 东乌珠穆沁旗| 通渭县| 山西省| 宁蒗| 页游| 汉沽区| 钟山县| 沅陵县| 和林格尔县| 桐柏县| 海城市| 同仁县| 诸城市| 苏尼特左旗| 丰镇市| 平顶山市| 新巴尔虎左旗| 视频| 拜泉县|