iOS 倒計時NSTimer

來源:互聯網
上載者:User

標籤:ios   nstimer   倒計時   

項目中可能會遇到有些倒計時的地方

比如 手機驗證的時候,驗證碼一般都會有一個時間限制,此時在輸入驗證碼的地方就需要展示一個倒計時


具體實現方式是使用了iOS 內建的 NSTimer


上代碼

首先建立


    int secondsCountDown; //倒計時總時間長度    NSTimer *countDownTimer;    UILabel *labelText;


然後具體實現


    //建立UILabel 添加到當前view    labelText=[[UILabel alloc]initWithFrame:CGRectMake(10, 120, 120, 36)];    [self.view addSubview:labelText];        //設定倒計時總時間長度    secondsCountDown = 60;//60秒倒計時    //開始倒計時    countDownTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timeFireMethod) userInfo:nil repeats:YES]; //啟動倒計時後會每秒鐘調用一次方法 timeFireMethod        //設定倒計時顯示的時間    labelText.text=[NSString stringWithFormat:@"%d",secondsCountDown];

實現每秒鐘執行的方法

-(void)timeFireMethod{    //倒計時-1    secondsCountDown--;    //修改倒計時標籤現實內容    labelText.text=[NSString stringWithFormat:@"%d",secondsCountDown];    //當倒計時到0時,做需要的操作,比如驗證碼到期不能提交    if(secondsCountDown==0){        [countDownTimer invalidate];        [labelText removeFromSuperview];    }}


大致已經實現,有問題可繼續交流


蘋果開發群 :414319235  歡迎加入  歡迎討論問題






著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

iOS 倒計時NSTimer

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.