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

溫馨提示×

溫馨提示×

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

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

iOS倒計時的實現方法

發布時間:2020-10-11 19:20:36 來源:腳本之家 閱讀:157 作者:makingitbest 欄目:移動開發

本文實例為大家分享了iOS倒計時的具體實現代碼,供大家參考,具體內容如下

效果

 iOS倒計時的實現方法

用法

1.導入Timer.h/.m文件

2.所需界面導入頭文件 #import “Timer.h”,其他設置參考源碼 

源碼

 github:https://github.com/makingitbest/CountDownTimer 

細節

#import "ViewController.h"
#import "Timer.h"

@interface ViewController ()<TimerDelegate>

@property (nonatomic, strong) UIButton *button;
@property (nonatomic, strong) Timer *timer;

@end

@implementation ViewController

- (void)viewDidLoad {
 
 [super viewDidLoad];
 
 // 倒計時界面
 self.timer   = [[Timer alloc] initWithFrame:CGRectMake(10, 100, 200, 30)];
 self.timer.delegate = self; // 記得遵守代理
 self.timer.sceonds = 5;
 self.timer.layer.borderWidth = 1;
 self.timer.layer.cornerRadius = 5;
 self.timer.layer.borderColor = [UIColor orangeColor].CGColor;
 self.timer.label.font   = [UIFont systemFontOfSize:14];
 self.timer.label.textColor = [UIColor orangeColor];
 [self.view addSubview:self.timer];
 
 self.button     = [[UIButton alloc] initWithFrame:CGRectMake(10, 150, 100, 40)];
 self.button.layer.borderWidth = 1.0f;
 self.button.layer.borderColor = [UIColor blackColor].CGColor;
 [self.button setTitle:@"點擊" forState:UIControlStateNormal];
 [self.button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
 [self.button setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted];
 [self.button setTitleColor:[UIColor grayColor] forState:UIControlStateDisabled];
 [self.view addSubview:self.button];
 [self.button addTarget:self action:@selector(buttonEvent) forControlEvents:UIControlEventTouchUpInside];
}

- (void)buttonEvent {
 
 // 啟動倒計時的方法,啟動之后設置button點擊失效
 [self.timer timerStart];
 self.button.enabled = NO;
 self.button.layer.borderColor = [UIColor grayColor].CGColor;
}

- (void)timerFinished:(Timer *)timer {

 // 計時完成之后,button恢復點擊
 self.button.enabled = YES;
 self.button.layer.borderColor = [UIColor blackColor].CGColor;
}

@end

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

合阳县| 望谟县| 塔城市| 滦南县| 乌鲁木齐市| 西畴县| 柳江县| 体育| 喜德县| 兴海县| 怀来县| 博乐市| 竹北市| 泰宁县| 交城县| 巴中市| 秦皇岛市| 汝州市| 都兰县| 靖安县| 冀州市| 红安县| 宜都市| 洛南县| 阿勒泰市| 定陶县| 景谷| 探索| 北票市| 新干县| 铁岭市| 顺昌县| 扎兰屯市| 满洲里市| 嘉义市| 雷州市| 峡江县| 山阳县| 古丈县| 大石桥市| 普安县|