-
-
Save dars/caddd856bdc56d902b8c8fc3433731cd to your computer and use it in GitHub Desktop.
Encapsulate iOS background tasks in a Swift class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BackgroundTask { | |
private let application: UIApplication | |
private var identifier = UIBackgroundTaskInvalid | |
init(application: UIApplication) { | |
self.application = application | |
} | |
class func run(application: UIApplication, handler: (BackgroundTask) -> ()) { | |
// NOTE: The handler must call end() when it is done | |
let backgroundTask = BackgroundTask(application: application) | |
backgroundTask.begin() | |
handler(backgroundTask) | |
} | |
func begin() { | |
self.identifier = application.beginBackgroundTaskWithExpirationHandler { | |
self.end() | |
} | |
} | |
func end() { | |
if (identifier != UIBackgroundTaskInvalid) { | |
application.endBackgroundTask(identifier) | |
} | |
identifier = UIBackgroundTaskInvalid | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment