无法识别的选择器发送到实例NSTimer Swift

时间:2014-11-23 10:55:23

标签: ios swift nstimer stopwatch

我正在尝试开发一款包含简单秒表功能的应用。我正在使用Xcode 6和Swift语言。这是FirstViewController中的代码

@IBAction func Stopwatch (Sender:UIButton) { 

var startTime = NSTimeInterval()

    func updateTime(timer:NSTimer) {

        //Find Current TIme

        var currentTime = NSDate.timeIntervalSinceReferenceDate()

        //Find the difference between current time and start time

        var elapsedTime :NSTimeInterval = currentTime - startTime

        //calculate the minutes in elapsed time.
        let minutes = UInt(elapsedTime / 60.0)
        elapsedTime -= (NSTimeInterval(minutes) * 60)

        //calculate the seconds in elapsed time.
        let seconds = UInt(elapsedTime)
        elapsedTime -= NSTimeInterval(seconds)

        //find out the fraction of milliseconds to be displayed.
        let hours = UInt(elapsedTime * 100)

        let strMinutes = minutes > 9 ? String(minutes):String(minutes)
        let strSeconds = seconds > 9 ? String(seconds):String(seconds)
        let strHours = hours > 9 ? String(hours):String(hours)

        //assign text to Label
        elapsedTimeLabel.text = "You have slept for \(strHours)"
    }

    //Timer 
    var timer = NSTimer.scheduledTimerWithTimeInterval(0.5, target: self, selector: Selector("updateTime:"), userInfo: nil, repeats: true)
    startTime = NSDate.timeIntervalSinceReferenceDate()

}
}

每次我运行应用程序(在iOS模拟器中)时,按下按钮时应用程序崩溃(执行秒表功能)。错误始终为

2014-11-23 11:44:53.617 Sleep[9630:644637] -[Sleep.FirstViewController updateTime:]: 
unrecognized selector sent to instance 0x7ff6d9676e80
2014-11-23 11:44:53.622 Sleep[9630:644637] *** Terminating app due to uncaught exception 
'NSInvalidArgumentException', reason: '-[Sleep.FirstViewController updateTime:]: unrecognized 
selector sent to instance 0x7ff6d9676e80'
*** First throw call stack:

我不知道为什么会这样,我对iOS编程很陌生,所以请帮忙!

2 个答案:

答案 0 :(得分:14)

让updateTime成为一个类方法 如果它是在一个纯粹的Swift类中,你需要在@objc前面说明该方法的声明:

class A {
     @objc func updateTime(timer:NSTimer) {

     }
}

答案 1 :(得分:0)

您已将updateTime定义为Stopwatch的本地函数,因此在其范围之外无法使用它。您应该在课程级别(与Stopwatch相同)移动它以便可以访问。

但是我注意到有些局部变量应该是实例属性。