在Swift中使用NSTimer

在Swift中使用NSTimer,第1张

概述在这种情况下,timerFunc()从未被调用。我缺少什么? class AppDelegate: NSObject, NSApplicationDelegate { var myTimer: NSTimer? = nil func timerFunc() { println("timerFunc()") } func applicationD 在这种情况下,timerFunc()从未被调用。我缺少什么?
class AppDelegate: NSObject,NSApplicationDelegate {    var myTimer: NSTimer? = nil    func timerFunc() {        println("timerFunc()")    }    func applicationDIDFinishLaunching(aNotification: NSNotification?) {        myTimer = NSTimer(timeInterval: 5.0,target: self,selector:"timerFunc",userInfo: nil,repeats: true)    }}
您可以创建一个自动将自己添加到runloop并开始启动的计划定时器:
NSTimer.scheduledTimerWithTimeInterval(0.5,selector: "timerDIDFire:",userInfo: userInfo,repeats: true)

或者,你可以保留你当前的代码,并添加定时器runloop当你准备好了:

let myTimer = NSTimer(timeInterval: 0.5,repeats: true)NSRunLoop.currentRunLoop().addTimer(myTimer,forMode: NSRunLoopCommonModes)
总结

以上是内存溢出为你收集整理的在Swift中使用NSTimer全部内容,希望文章能够帮你解决在Swift中使用NSTimer所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1058057.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存