溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

iOS如何實(shí)現(xiàn)短信驗(yàn)證碼倒計(jì)時(shí)

發(fā)布時(shí)間:2021-05-24 11:59:29 來源:億速云 閱讀:246 作者:小新 欄目:移動(dòng)開發(fā)

小編給大家分享一下iOS如何實(shí)現(xiàn)短信驗(yàn)證碼倒計(jì)時(shí),相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

一、利用NSTimer計(jì)時(shí)器

1.新建一個(gè)UIButton按鈕,設(shè)置成屬性,名為codeButton。(UIButton樣式一定要為自定義,否則后面倒計(jì)時(shí)數(shù)秒時(shí)會(huì)出現(xiàn)閃爍現(xiàn)象)

2.定義一個(gè)NSTimer的屬性,名為timer,同時(shí)定義一個(gè)用于計(jì)時(shí)的int變量time,設(shè)置初始值為60。

//啟動(dòng)一個(gè)定時(shí)器
self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(operatePerSecond) userInfo:nil repeats:YES];
 
//實(shí)現(xiàn)定時(shí)器中的方法
- (void)operatePerSecond {
    if (time == 1) {
      [self.timer invalidate];
      time = 60;
      [self.codeButton setTitle:@"重新獲取" forState:UIControlStateNormal];
      self.codeButton.tintColor = [UIColor blackColor];
      self.codeButton.enabled = YES;
    }else {
      time --;
      [self.codeButton setTitle:[NSString stringWithFormat:@"%ds" ,time] forState:UIControlStateNormal];
    }
}

3.此時(shí)主要邏輯已經(jīng)完成,但要記得:在本頁面即將消失的時(shí)候也要停掉計(jì)時(shí)器self.timer。

二、利用GCD實(shí)現(xiàn)

1.定義一個(gè)用于計(jì)時(shí)的time(此時(shí)要用block修飾)---  block int time = 60;

  //倒計(jì)時(shí)時(shí)間
  __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_TIME_NOW, 1.0 * NSEC_PER_SEC, 0 * NSEC_PER_SEC);
  dispatch_source_set_event_handler(timer, ^{
    if(timeout == 1){
      //倒計(jì)時(shí)結(jié)束,關(guān)閉
      dispatch_source_cancel(timer);
      dispatch_async(dispatch_get_main_queue(), ^{
      timeout = 60;
      [self.codeButton setTitle:@"重新獲取" forState:UIControlStateNormal];
      self.codeButton.tintColor = [UIColor blackColor];
      self.codeButton.enabled = YES;
      });
    }else{
      NSString *strTime = [NSString stringWithFormat:@"%ds",timeout];
      dispatch_async(dispatch_get_main_queue(), ^{
        [self.codeButton setTitle:strTime forState:UIControlStateNormal];
      });
      timeout--;
    }
  });
dispatch_resume(timer);

2.把上述代碼寫入點(diǎn)擊方法中即可實(shí)現(xiàn)倒計(jì)時(shí)效果。

以上是“iOS如何實(shí)現(xiàn)短信驗(yàn)證碼倒計(jì)時(shí)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

ios
AI