iOS 自定义空闲计时器
在 iOS 企业应用程序中,我需要实现空闲超时。应用程序的idleTimerDisabled属性设置为yes,这不是我想要的。
这是一种展览日志类型的应用程序,应用程序应在特定时间后跳回首页。有没有什么方法不需要我使用重置计时器的函数来调整每个触摸/手势回调?
In an iOS enterprise app i need to implement an idle timeout. The application's idleTimerDisabled property is set to yes, that's not what I want.
It's a journal type of application for an exhibition, in which the app should jump back to the first page after a specific time. Is there some way that doesn't need me to adjust each touch/gesture callback with a function that resets the timer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以覆盖 UIApplication::sendEvent 来重置计时器,例如,请参阅此处接受的答案:
iPhone:检测自上次屏幕触摸以来用户不活动/空闲时间
You can override UIApplication::sendEvent to reset the timer, e.g. see the accepted answer here:
iPhone: Detecting user inactivity/idle time since last screen touch