微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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以上支持,兼容之前版本代码中注意判断

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐