参数 – 如何使用Swift NSTimer调用其选择器来修复错误

我收到运行时错误

2014-07-15 16:49:44.893 TransporterGUI [1527:303] – [_ TtC14TransporterGUI11AppDelegate printCountdown]:无法识别的选择器发送到实例0x10040e8a0

当我使用以下Swift代码来触发计时器时:

@IBAction func schedule(sender : AnyObject) {

    var startTime = startDatePicker.dateValue.timeIntervalSinceDate(NSDate())
    var endTime = endDatePicker.dateValue.timeIntervalSinceDate(startDatePicker.dateValue)
    var startDate = NSDate.date()
    let params = ["startTime": startTime,"startDate": startDate]

    var counter = NSTimer.scheduledTimerWithTimeInterval(1.0,target:self,selector:Selector("printCountdown"),userInfo:params,repeats:true)
}

func printCountdown(timer: NSTimer) {

    var userInfo = timer.userInfo as NSDictionary
    var startTime = userInfo["startTime"] as NSTimeInterval
    var startDate = userInfo["startDate"] as NSDate

    var elapsedtime: NSTimeInterval = NSDate.date().timeIntervalSinceDate(startDate)
    var remainingTime: NSTimeInterval  =  startTime - elapsedtime;

    if (remainingTime <= 0.0) {
        timer.invalidate()
        transferLabel.title = "No transfer scheduled"
    }

    transferLabel.title = remainingTime.description

}

奇怪的是,如果我将函数printCountdown的签名更改为没有参数,则会正确调用函数,但是我无法访问进行调用的计时器对象.

提前致谢!

解决方法

您的选择器应为“printCountdown:”,带有终止冒号以指示选择器采用参数.

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...