91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

嘉定区| 新巴尔虎左旗| 岗巴县| 灯塔市| 枣强县| 茂名市| 乾安县| 宝兴县| 深水埗区| 棋牌| 祁连县| 莱西市| 尤溪县| 新沂市| 毕节市| 通山县| 肇州县| 平安县| 深州市| 安远县| 汉源县| 左权县| 盘锦市| 铅山县| 朝阳区| 霞浦县| 剑河县| 上杭县| 秦皇岛市| 西平县| 南雄市| 习水县| 互助| 石城县| 九龙坡区| 丰都县| 五家渠市| 滁州市| 大同县| 井研县| 静安区|