swift3.0 GCD DispatchSourceTimer注意事项

前端之家收集整理的这篇文章主要介绍了swift3.0 GCD DispatchSourceTimer注意事项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

var count = 0;

var timer = DispatchSource.makeTimerSource(flags: [],queue: DispatchQueue.global())

timer.setEventHandler {

NSLog("timer exec!")

count += 1

if count >= 5 {

timer.cancel()

}

}

timer.scheduleOneshot(deadline: .now())

//timer.scheduleRepeating(deadline: .now(),interval: .seconds(1)/*,leeway: .milliseconds(100)*/)

timer.resume()


调用DispatchSourceTimer时,无论设置timer.scheduleOneshot,还是timer.scheduleRepeating代码必须调用cancel(),事件才会执行

不知道为何苹果这样设计,可能是考虑到开发者可能忘记取消定时器而影响性能

ios 10.0以上支持,兼容之前版本代码中注意判断

原文链接:https://www.f2er.com/swift/322790.html

猜你在找的Swift相关文章