如何让 iPhone 屏幕保持活动状态,而不是进入省电模式?
我正在开发一个简单的游戏,需要 UIAccelerometer
而无需任何屏幕点击交互。在默认模式下,屏幕会定期进入省电模式。如何使屏幕在应用程序处于活动状态的整个过程中保持活动状态?
I am working on a simple game that requires UIAccelerometer
without any screen tapping interaction. In the default mode, the screen goes into a power saving mode periodically. How can I make the screen to stay active throughout the entire time what the app is active?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
[UIApplication sharedApplication].idleTimerDisabled = YES
阻止 iPhone 进入睡眠模式。Use
[UIApplication sharedApplication].idleTimerDisabled = YES
to prevent the iPhone to go to sleep-mode.