我是新來的編碼(和本網站),我正嘗試使用YouTube上的教程構建秒錶,並且無法使其工作。當我編寫更新Timer的函數時,錯誤「%is unavailable:instead truncatingRemainder instead」顯示在第6行和第7行。我正在使用最新的Xcode版本編碼Swift的最新版本。有人能告訴我如何讓它與毫秒一起使用truncatingRemainder嗎?對此,我真的非常感激。我該如何擺脫「%is unavailable:Use truncatingRemainder instead」?
這裏是鏈接到教程:https://www.youtube.com/watch?v=xp0dvmvh3Cw
func updateElapsedTimeLabel (timer : Timer)
{
if watch.isRunning
{
let minutes = Int(watch.elapsd/60)
let seconds = Int(watch.elapsd % 60)
let ten0fseconds = Int(watch.elapsd * 10 % 10)
elapsedTimeLabel.text = String (format: "%2d:%2d.%2d", minutes, seconds, ten0fseconds)
}
else {
timer.invalidate()
}
}
錯誤消息告訴您該怎麼辦... –
@代碼學徒我知道它告訴我,但我想知道它爲什麼不起作用。 – Brandon