我正在尝试从 Lua 中的 1:00 到 0:00 这样的固定分钟倒计时。
我怎样才能做到这一点?
我假设您正在使用 Corona SDK。
Corona 提供了一种简单的方法
local time = 60
local function decreaseTime()
time = time-1
print(time)
end
timer.performWithDelay(1000,decreaseTime,60)
在这里阅读 http://developer.anscamobile.com/reference/index/timerperformwithdelay