Hey,
The app I am working on will not be interactive once started, and I need the system not to time out or lock the screen…
Any ideas on how to achieve this?
Apple dev doc states the following:
Turning Off Screen Locking
If an iOS-based device does not receive touch events for a specified period of time, the system turns off the screen and disables the touch sensor. Locking the screen is an important way to save power. As a result, you should generally leave this feature enabled. However, for an app that does not rely on touch events, such as a game that uses the accelerometers for input, disable screen locking to prevent the screen from going dark while the app is running. However, even in this case, disable screen locking only while the user is actively engaged with the app. For example, if the user pauses a game, reenable screen locking to allow the screen to turn off.
To disable screen locking, set the idleTimerDisabled property of the shared UIApplication object to YES. Be sure to reset this property to NO when your app does not need to prevent screen locking.
Something like
settings.iphone.plist[“UIApplication”]= { idleTimerDisabled=true }
in build.settings?
Thanks!