我想计算自从我上次按下iPod Touch 4g项目中的屏幕(或按钮)以来的时间。 是唯一的方法,当我停止按下按钮时触发计时器? THKS
(ps:我不在这个问题中编写代码,因为这是iOS内部的一般性问题,但是如果有人可以帮我处理代码,我会很感激)。
答案 0 :(得分:0)
显然你提出这个问题需要很长时间,但是如果其他人正在寻找潜在的解决方案,请尝试使用我在这个问题上创建的代码:https://stackoverflow.com/a/8994884/1007725
基本上你需要查看如何使用IDLE时间。
答案 1 :(得分:-1)
这与你的建议完全一样..
Pseudo code:
variable currentTime // declared in header or something like that
initMethod {
currentTime = "get current time from timer"
}
touchMethod {
print: "get current time from timer" - currentTime
currentTime = "get current time from timer"
}
编辑:为清晰起见。