如何使用os.date()来安排应用程序关闭?

时间:2013-03-12 17:03:58

标签: timer corona schedule

我遇到了一个大问题。有人可以帮忙吗? 感谢。

local timer;
function start(e)
  timer = os.date("!*t", os.time() + 60);
  print(timer);
end
someObject:addEventListener("tap", start);

function verifyTimer()
 if(timer == 60)then
  os.exit();
 end
end
Runtime:addEventListener("enterFrame", verifyTimer)

1 个答案:

答案 0 :(得分:0)

Apple只允许在后台运行一些东西,而计时器不是其中之一。当应用程序因任何原因暂停时,您的计时器将被暂停。如果您希望将来发生某些事情,则需要设置Corona支持的本地通知事件。

我非常确定Google会执行相同的操作。