Skip to content

Instantly share code, notes, and snippets.

@SteveTrewick
Created October 16, 2015 14:07
Show Gist options
  • Save SteveTrewick/53091db9f1910704b59f to your computer and use it in GitHub Desktop.
Save SteveTrewick/53091db9f1910704b59f to your computer and use it in GitHub Desktop.
Swift beginBackgroundTaskWithExpirationHandler snippet
var bgTask:UIBackgroundTaskIdentifier!
bgTask = app.beginBackgroundTaskWithExpirationHandler { () -> Void in
self.app.endBackgroundTask(bgTask)
}
// Don't do this
@Sophie1214
Copy link

Why not?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment