如何在swift中为NSTimer设置超时?

时间:2016-02-05 13:54:40

标签: ios swift

我有一个NSTimer对象如下:

 var timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: "updateTimer", userInfo: nil, repeats: true)

我想把超时放到我的计时器上。也许你知道android中的postdelayed方法。我想要同样的东西的快速版本。我怎样才能做到这一点 ?

1 个答案:

答案 0 :(得分:6)

NSTimer不适合可变间隔时间。您可以使用指定的延迟时间进行设置,但无法对其进行更改。比每次停止和启动NSTimer更优雅的解决方案是使用dispatch_after

借鉴Matt's answer

// this makes a playground work with GCD
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true

struct DispatchUtils {

    static func delay(delay:Double, closure:()->()) {
        dispatch_after(
            dispatch_time(
                DISPATCH_TIME_NOW,
                Int64(delay * Double(NSEC_PER_SEC))
            ),
            dispatch_get_main_queue(), closure)
    }
}


class Alpha {

    // some delay time
    var currentDelay : NSTimeInterval = 2

    // a delayed function
    func delayThis() {

        // use this instead of NSTimer
        DispatchUtils.delay(currentDelay) {
            print(NSDate())
            // do stuffs

            // change delay for the next pass
            self.currentDelay += 1

            // call function again
            self.delayThis()
        }
    }
}

let a = Alpha()

a.delayThis()

在操场上试试。 它将对函数的每次传递应用不同的延迟。