仅在使用导航时如何防止屏幕锁定?
位智可以选择执行此操作,如何在我的App中执行此操作?
用这个:
目标C:
[[UIApplication sharedApplication] setIdleTimerDisabled: YES];
斯威夫特(旧版):
UIApplication.sharedApplication().idleTimerDisabled = true
Swift 3及更高版本:
UIApplication.shared.isIdleTimerDisabled = true
确保导入UIKit。
UIKit
这是来自apple.developer.com的文档的链接。