全局变量的定义:var timer : Timer!
使用:timer=Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(self.textfieldNotification), userInfo: nil, repeats: true)
textfieldNotification是timer的方法名
销毁:如果像OC一样直接timer.invalidate()会崩溃,要用
guard let timer1 = self.timer
else{ return }
timer1.invalidate()
收录:https://blog.csdn.net/liumude123/article/details/54571895
网友评论