我想做一个锻炼应用程序来帮助用户跟踪他们的日常锻炼,我有一个变量exerciseTime
,我想每天重置它。有什么方法可以做到这一点吗?
变量存储在应用存储@AppStorage("exerciseTime") var exerciseTime = 0.0
中,并连接到计时器。
Text("Time: \(format(seconds: timerStruct.countdownTimer))")
.padding()
.onReceive(timer) { _ in
if timerStruct.countdownTimer > 0 && timerStruct.timerRunning == true {
timerStruct.countdownTimer -= 1
exerciseTime += 1.0
} else {
timerStruct.timerRunning = false
if timerStruct.countdownTimer <= 0, timerStruct.timerRunning == false {
timerStruct.isAlertpresented = true
reset()
}
}
1条答案
按热度按时间umuewwlo1#
此函数用于检查当前日期是否与
UserDefaults
中保存的日期在同一天只要在应用程序激活时始终调用即可