作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我希望通过单击 UI 按钮来重置和暂停计时器,但在“重置”计时器时遇到了一些问题。谁能帮忙?开始计时、重置、重新开始时,update func 被多次调用,打乱了倒计时。
@IBAction func startTimer (_ sender: AnyObject) {
var timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: Selector("update"), userInfo: nil, repeats: true)
Reset.isHidden = false
StartButton.isHidden = true
}
@IBAction func resetButton (_ sender: AnyObject) {
Reset.isHidden = true
StartButton.isHidden = false
count = 200
invalidate.t
}
func update() {
if (count > 0) {
let minutes = String(count / 60)
let seconds = String(count % 60)
if (seconds == "0") {
CountDown.text = minutes + ":" + seconds + "0"
} else {
CountDown.text = minutes + ":" + seconds
}
count -= 1
}
}
我是一名优秀的程序员,十分优秀!