Skip to content

Instantly share code, notes, and snippets.

@brentpicasso
Created February 12, 2019 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brentpicasso/488a78d8f558c223e1634226dd8f07b6 to your computer and use it in GitHub Desktop.
Save brentpicasso/488a78d8f558c223e1634226dd8f07b6 to your computer and use it in GitHub Desktop.
iOS keep sleep timer from enabling
// Prevent sleep
[NSTimer scheduledTimerWithTimeInterval:2.0 repeats:YES block: ^(NSTimer * _Nonnull timer) {
[UIApplication sharedApplication].idleTimerDisabled = NO;
[UIApplication sharedApplication].idleTimerDisabled = YES;
NSLog(@"idle timer");
}];
NSLog(@"Initializing python");
Py_Initialize();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment