Haste 0.1

Haste 0.1

测试已测试
语言语言 SwiftSwift
许可证 MIT
发布最新发布2015年1月
SPM支持SPM

Ash Furrow维护。



Haste 0.1

Haste

每个人都有在Objective-C中为NSTimer创建分类的块。但在Swift中呢?嗯,可能很多人做过,但重要的是这并不像你想象的那么简单。

用法

  1. pod 'Haste'添加到您的Podfile中。
  2. 在任何您想使用闭包进行计时的地方添加import Haste
  3. 调用以下函数。

    NSTimer.scheduledTimerWithTimeInterval(1, block: { () -> () in
        println("Why does anyone do the things they do?")
    }, repeats: true)
    
  4. 该函数返回NSTimer实例,因此当您想要停止时,可以调用它的invalidate()方法。