Skip to content

Instantly share code, notes, and snippets.

@sendoa
Created June 7, 2012 09:02
Show Gist options
  • Save sendoa/2887604 to your computer and use it in GitHub Desktop.
Save sendoa/2887604 to your computer and use it in GitHub Desktop.
Evitar que la pantalla se bloquee (iOS)
// Disable the idle timer
[[UIApplication sharedApplication] setIdleTimerDisabled: YES];
// Or for those who prefer dot syntax:
[UIApplication sharedApplication].idleTimerDisabled = YES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment