self.codeBtn.addTarget(self, action: #selector(createTimer), for: .touchUpInside)
func createTimer() {
self.codeBtn.setTitle("5", for: .normal)
self.codeBtn.isUserInteractionEnabled = false
self.timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(timerReduces), userInfo: nil, repeats: true)
self.timer?.fire()
}
func timerReduces() {
self.startTime -= 1
let time = "\(self.startTime)"
self.codeBtn.setTitle(time, for: .normal)
print(self.startTime)
// let newStr = NSString(string: time)
// let num = newStr.intValue
if self.startTime == 0 {
self.codeBtn.isUserInteractionEnabled = true
self.codeBtn.setTitle("重新获取验证码", for: .normal)
self.timer?.invalidate()
self.startTime = 5
}
}
定时器Timer
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 问题原因: 一般定时器timer都会被以默认模式default添加到主线程的runloop中,当滑动界面时,run...
- Timer是一种定时器工具,用来在一个后台线程计划执行指定任务。它可以计划执行一个任务一次或反复多次。TimerT...
- 本文旨在总结项目中因使用各类定时器而踩到的坑,并附上经验总结。 NSTimer NSTimer是最常用的定时器,坑...
- Timer 定时器相信都不会陌生,之所以拿它来做源码分析,是发现整个控制流程可以体现很多有意思的东西。 在业务开发...