Swift 定时重复执行代码段工具类库 Every.swift。
只要你的类实现了TimerManageable协议,你只需要这样做:
TimerManageable
self.every(3.seconds) { print("hello") return true }
返回true将继续,返回false将使定时器无效。
true
false