驗證碼倒計時按鈕

来源:http://www.cnblogs.com/theDesertIslandOutOfTheWorld/archive/2016/01/09/5115513.html
-Advertisement-
Play Games

讓你像使用普通按鈕一樣,只用設置倒計時時長就可以實現倒計時功能


註:驗證碼倒計時按鈕的應用是非常普遍的,該Blog就和你一起來寫一個IDCountDownButton來實現驗證碼倒計時的效果。你可以想使用普通的UIButton類型按鈕一樣,只需要設置其倒計時時長(若未設置,預設為60秒),就可以輕鬆的實現點擊countDownButton開始倒計時,倒計時結束方可重新點擊。

實現效果

  • 如圖

實現思路

  • 自定義一個IDCountDownButton,重寫 beginTrackingWithTouch:withEvent: 攔截button的點擊事件,根據是否正在倒計時決定是否響應並傳遞button的點擊事件(若倒計時正在進行中,再次點擊不會重新開始倒計時)
  • 是用NSTimer定時器,定時改變IDCountDownButton的title
  • 若倒計時結束,取消定時器並回覆倒計時時長(使IDCountDownButton具備再次開始倒計時的能力)
  • 在IDCountDownButton銷毀時,同樣取消定時器

實現步驟

  • 添加相關的屬性
    • 公有屬性(public)

      @interface IDCountDownButton : UIButton
      /** 驗證碼倒計時的時長 */
      @property (nonatomic, assign) NSInteger durationOfCountDown;
      @end
    • 私有屬性

      @interface IDCountDownButton ()
      /** 保存倒計時按鈕的非倒計時狀態的title */
      @property (nonatomic, copy) NSString *originalTitle;
      /** 保存倒計時的時長 */
      @property (nonatomic, assign) NSInteger tempDurationOfCountDown;
      /** 定時器對象 */
      @property (nonatomic, strong) NSTimer *countDownTimer;
      @end
  • 重寫setter
    • title屬性的setter
      • 私有屬性originalTitle用來暫存開始計時前button的標題,即用戶設置的button的標題,通常是“獲取驗證碼”
      • 需要屏蔽計時過程中,title更新時改變originalTitle的值

        - (void)setTitle:(NSString *)title forState:(UIControlState)state {
            [super setTitle:title forState:state];
            // 倒計時過程中title的改變不更新originalTitle
            if (self.tempDurationOfCountDown == self.durationOfCountDown) {
                self.originalTitle = title;
            }
        }
    • durationOfCountDown屬性的setter
      • 設置tempDurationOfCountDown的值
      • tempDurationOfCountDown的作用:倒計時;與durationOfCountDown配合判斷當前IDCountDownButton是否具備重新開始倒計時的能力

        - (void)setDurationOfCountDown:(NSInteger)durationOfCountDown {
            _durationOfCountDown = durationOfCountDown;
            self.tempDurationOfCountDown = _durationOfCountDown;
        }
  • 初始化
    • 設置倒計時的預設時長為60妙
    • 設置IDCountDownButton預設的title為“獲取驗證碼”

      - (instancetype)initWithFrame:(CGRect)frame {
          if (self = [super initWithFrame:frame]) {
              // 設置預設的倒計時時長為60秒
              self.durationOfCountDown = 60;
              // 設置button的預設標題為“獲取驗證碼”
              [self setTitle:@"獲取驗證碼" forState:UIControlStateNormal];
          }
          return self;
      }
      - (instancetype)initWithCoder:(NSCoder *)aDecoder {
          if (self = [super initWithCoder:aDecoder]) {
              // 設置預設的倒計時時長為60秒
              self.durationOfCountDown = 60;
              // 設置button的預設標題為“獲取驗證碼”
              [self setTitle:@"獲取驗證碼" forState:UIControlStateNormal];
          }
          return self;
      }
  • 攔截IDCountDownButton的點擊事件,判斷是否開始倒計時
    • 若tempDurationOfCountDown等於durationOfCountDown,說明未開始倒計時,響應並傳遞IDCountDownButton的點擊事件;否則,不響應且不傳遞。

      - (BOOL)beginTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event {
          // 若正在倒計時,不響應點擊事件
          if (self.tempDurationOfCountDown != self.durationOfCountDown) {
              return NO;
          }
          // 若未開始倒計時,響應並傳遞點擊事件,開始倒計時
          [self startCountDown];
          return [super beginTrackingWithTouch:touch withEvent:event];
      }
  • 倒計時
    • 創建定時器,開始倒計時

      - (void)startCountDown {
          // 創建定時器
          self.countDownTimer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(updateIDCountDownButtonTitle) userInfo:nil repeats:YES];
          // 將定時器添加到當前的RunLoop中(自動開啟定時器)
          [[NSRunLoop currentRunLoop] addTimer:self.countDownTimer forMode:NSRunLoopCommonModes];
      }
    • 更新IDCountDownButton的title為倒計時剩餘的時間

      - (void)updateIDCountDownButtonTitle {
          if (self.tempDurationOfCountDown == 0) {
              // 設置IDCountDownButton的title為開始倒計時前的title
              [self setTitle:self.originalTitle forState:UIControlStateNormal];
              // 恢復IDCountDownButton開始倒計時的能力
              self.tempDurationOfCountDown = self.durationOfCountDown;
              [self.countDownTimer invalidate];
          } else {
              // 設置IDCountDownButton的title為當前倒計時剩餘的時間
              [self setTitle:[NSString stringWithFormat:@"%zd秒", self.tempDurationOfCountDown--] forState:UIControlStateNormal];
          }
      }
    • 移除定時器

      - (void)dealloc {
          [self.countDownTimer invalidate];
      }
  • 使用示例
    • 添加vertificationCodeIDCountDownButton屬性

      @interface ViewController ()
      /** 驗證碼倒計時的button */
      @property (nonatomic, strong) IDCountDownButton *vertificationCodeIDCountDownButton;
      @end
    • 創建vertificationCodeIDCountDownButton併進行相關設置

      - (void)viewDidLoad {
          [super viewDidLoad];
          // 創建vertificationCodeIDCountDownButton
          self.vertificationCodeIDCountDownButton = [[IDCountDownButton alloc] initWithFrame:CGRectMake(160, 204, 120, 44)];
          // 添加點擊事件
          [self.vertificationCodeIDCountDownButton addTarget:self action:@selector(vertificationCodeIDCountDownButtonClick:) forControlEvents:UIControlEventTouchUpInside];
          // 設置標題相關屬性
          [self.vertificationCodeIDCountDownButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
          [self.vertificationCodeIDCountDownButton setTitle:@"獲取驗證碼" forState:UIControlStateNormal];
          // 設置背景圖片
          [self.vertificationCodeIDCountDownButton setBackgroundImage:[UIImage imageNamed:@"redButton"] forState:UIControlStateNormal];
          // 設置倒計時時長
          self.vertificationCodeIDCountDownButton.durationOfCountDown = 10;
          // 將vertificationCodeIDCountDownButton添加的控制器的view中
          [self.view addSubview:self.vertificationCodeIDCountDownButton];
      }
    • 實現點擊事件觸發的操作

      - (void)vertificationCodeIDCountDownButtonClick:(UIButton *)button {
          // TODO:調用伺服器介面,獲取驗證碼
      }

關於AppIcon

  • 添加AppIcon時需要遵循以下規則
    • 命名,以Icon開頭(首字母大寫),跟上@2x/@3x,如圖:

    • 尺寸,必須按要求設置尺寸,如圖

      • 圖中所示的60pt對應的圖片尺寸是:
        • 2x:120px X 120px
        • 3x:180px X 180px

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 為什麼要使用sql語句建庫建表? 現在假設這樣一個場景,公司的項目經過測試沒問題後需要在客戶的實際環境中進行演示,那就需要對數據進行移植,現在問題來了:客戶的資料庫版本和公司開發階段使用的資料庫不相容怎麼移植? 行之有效的辦法就是編寫比較通用的SQL語句,編寫完畢後存入*.sql文件中,最後複製到客...
  • 五、MySql 中常用子句 1.where子句 我們都知道在查詢數據時,未必會查整個表中的數據,當有條件查詢時,就會用到where子句。其結構: select * from [表名] where [條件]。 2.like子句 like子句就是模糊查詢,有下麵一些通配符: ...
  • 在機器學習和數據挖掘中,經常會聽到兩個名詞:歸一化(Normalization)與標準化(Standardization)。它們具體是什麼?帶來什麼益處?具體怎麼用?本文來具體討論這些問題。
  • 上一篇,我們介紹了Hive的表操作做了簡單的描述和實踐。在實際使用中,可能會存在數據的導入導出,雖然可以使用sqoop等工具進行關係型數據導入導出操作,但有的時候只需要很簡便的方式進行導入導出即可   下麵我們開始介紹hive的數據導入,導出,以及集群的數據遷移進行描述。
  • 一、安裝MySql1.解壓版安裝下載地址:http://dev.mysql.com/downloads/mysql/安裝及配置教程:http://jingyan.baidu.com/article/f3ad7d0ffc061a09c3345bf0.html (百度經驗)2.安裝版安裝下載地址:htt...
  • SQL 語句日期用法及函數--DAY()、MONTH()、YEAR()——返回指定日期的天數、月數、年數;select day(cl_s_time) as '日' from class--返回天select '月'=month(cl_s_time) from class--返回月select '年'...
  • 在OC的UI中,一些常用的控制項如UIImageView,UILabel等預設是沒有交互的,就是在控制項上點擊,雙擊或者滑動等操作是沒有效果的。下麵的方法較為完美的解決了控制項的交互問題:(以UIImageView為例,其他控制項類似)首先,創建一個UIImageView:UIImageView *imag...
  • 不小心在開發過程中,得到了(null)以及的返回值,找了好長時間只找到了一個關於的。由於要根據返回值進行判斷,做出必要反應,因此必須知道返回值所代表的具體字元,在得到(null)後利用isEqual:和@“”,NULL,@“(null)”,nil,Nil比較後均得不到正確結果,弄得不知所措了,但是還...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...