views:

45

answers:

1

Hello. I'm diving into iOS development and am building my own alarm clock app to become familiar with platform and SDK. I've noticed some alarm clock apps in the app store keep the screen from dimming and/or turning off when their app is running. How is this implemented?

Thanks so much in advance for all your help!

+4  A: 

Add this line of code on your application delegate:

[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
ibeitia