每个人都有在Objective-C中为NSTimer
创建分类的块。但在Swift中呢?嗯,可能很多人做过,但重要的是这并不像你想象的那么简单。
pod 'Haste'
添加到您的Podfile中。import Haste
。调用以下函数。
NSTimer.scheduledTimerWithTimeInterval(1, block: { () -> () in
println("Why does anyone do the things they do?")
}, repeats: true)
该函数返回NSTimer
实例,因此当您想要停止时,可以调用它的invalidate()
方法。