views:

90

answers:

1

Any chance?

I want to know if it is set from "1 - 5 minutes" or set to "never".

Thank you!

+1  A: 

Apple won't let you directly access system settings like that. If you are trying to prevent the screen from locking, you can always do something like this:

[[UIApplication sharedApplication] setIdleTimerDisabled:YES];

As far as I know, that is the only thing that you can do to interact with the auto-lock.

Kyle