Is there a way to 'force' the user to have auto-lock (and maybe passcode lock) on while the application is running (for security reasons mainly)? If we can't set them programmatically, can we at least check to see if they are set?
Thanks, Mihai
The above snippet will check to see if the idle timer is disabled. If it is, it will tell the user to enable it via a UIAlertView. |
|||||||||||
|
|
YOu can use a Session handler class which inherits from UIApplication and fix a timer.. Thats very easy and fully customizable. |
|||
|
|
NOand aYESfor example..[[UIApplication sharedApplication] setIdleTimerDisabled: NO];or[[UIApplication sharedApplication] setIdleTimerDisabled: YES];..but like I said, I haven't tested to see if this overrides what the user sets in theSettingsapp. – iWasRobbed Jul 23 '10 at 16:41