我正在尝试从Lua的1:00到0:00等固定时间进行倒计时。
我该怎么做?
答案 0 :(得分:4)
我假设您使用的是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