iOS實(shí)現(xiàn)短信驗(yàn)證碼倒計(jì)時(shí)
在開(kāi)發(fā)中,經(jīng)常在需要用戶(hù)注冊(cè)的時(shí)候會(huì)需要實(shí)現(xiàn)驗(yàn)證碼倒計(jì)時(shí)的功能,下面是解決這個(gè)問(wèn)題的兩種思路(使用UIButton控件)
一、利用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)完成,但要記得:在本頁(yè)面即將消失的時(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.把上述代碼寫(xiě)入點(diǎn)擊方法中即可實(shí)現(xiàn)倒計(jì)時(shí)效果。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
詳解iOS 滾動(dòng)視圖的復(fù)用問(wèn)題解決方案
本篇文章主要介紹iOS 滾動(dòng)視圖的復(fù)用問(wèn)題解決方案,具有一定的參考價(jià)值,有興趣的可以了解一下。2016-12-12IOS UIWebView獲取404、504等錯(cuò)誤問(wèn)題解決方案
這篇文章主要介紹了IOS UIWebView獲取404、504等錯(cuò)誤問(wèn)題的相關(guān)資料,并對(duì)相應(yīng)的錯(cuò)誤問(wèn)題提出相應(yīng)的解決方案,需要的朋友可以參考下2016-11-11iOS開(kāi)發(fā)之如何通過(guò)PUT請(qǐng)求上傳數(shù)據(jù)
眾所周知一般的服務(wù)器上傳數(shù)據(jù)都是用POST請(qǐng)求,這樣通過(guò)AFNetworking的POST請(qǐng)求穩(wěn)穩(wěn)的,但是有一天遇到一個(gè)問(wèn)題,服務(wù)器上傳數(shù)據(jù)用的是PUT請(qǐng)求,發(fā)現(xiàn)用AFNetworking并不是那么好用,下面這篇文章就來(lái)講一下如何通過(guò)PUT請(qǐng)求上傳數(shù)據(jù)。有需要的朋友們可以參考借鑒。2016-11-11iOS應(yīng)用開(kāi)發(fā)中使用NSLocale類(lèi)實(shí)現(xiàn)對(duì)象信息的本地化
這篇文章主要介紹了iOS應(yīng)用開(kāi)發(fā)中使用NSLocale類(lèi)實(shí)現(xiàn)對(duì)象信息的本地化的方法,能夠?qū)r(shí)間和貨幣等格式化為與系統(tǒng)本地設(shè)置相同的偏好,需要的朋友可以參考下2016-05-05