vote up 0 vote down star

Hi

I am using this in my appdelegate's applicationDidFinishLaunching: method to make sure the iPhone doesn't go to sleep during the time the app is open

[application setIdleTimerDisabled:YES];

It works great on all screens but on one of the screens the iPhone goes to sleep. I could not figure out how to reproduce this and it seems to happen at random times.

Can someone please tell me how to handle this situation.

Thanks

flag

3 Answers

vote up 0 vote down check

I set and un-set this property throughout my app using:

[UIApplication sharedApplication].idleTimerDisabled = YES;

Setting this where you're having trouble could fix it, though it might be a bit of a band-aid solution.

link|flag
vote up 0 vote down

I think the setIdleTimerDisabled doesn't exist in UIApplication class. Property searches not only set- method but also other similar named methods.

Use dot accessor is the best way to solve your problem.

link|flag
vote up 0 vote down

Set this property in the application delegate's +initialize method, e.g.:

+ (void) initialize {   
    if ([self class] == [MyAppDelegate class]) {
        UIApplication* myApp = [UIApplication sharedApplication];
        myApp.idleTimerDisabled = YES;
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.