Skip to content

Instantly share code, notes, and snippets.

@flashlib
Created September 22, 2013 06:48
Show Gist options
  • Save flashlib/6657372 to your computer and use it in GitHub Desktop.
Save flashlib/6657372 to your computer and use it in GitHub Desktop.
beginBackgroundTaskWithExpirationHandler
__block UIBackgroundTaskIdentifier backgroundTaskIdentifier = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
NSLog(@"Background Time:%f",[[UIApplication sharedApplication] backgroundTimeRemaining]);
[self endBackgroundTask:backgroundTaskIdentifier];
backgroundTaskIdentifier = backgroundTaskIdentifier;
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment