默认功能参数不起作用

时间:2017-05-30 18:54:03

标签: swift

    func timerRuns(addTimeValue: Int = 1) {
    if let timeLabelInt = Int(timeLabel.text!) {
        if timeLabelInt + addTimeValue > 0 {
            timeLabel.text = String(timeLabelInt + addTimeValue)
        }
    }
}

当我调试此函数时,我没有向参数发送值,它等于106102873578432 ..任何想法?谢谢!

(我从Timer.scheduledTimer方法调用此函数)

0 个答案:

没有答案