Skip to content

Instantly share code, notes, and snippets.

@sisoje
Created February 4, 2019 13:55
Show Gist options
  • Save sisoje/5bb0184c1f1933d3d0af177dbc61c3e1 to your computer and use it in GitHub Desktop.
Save sisoje/5bb0184c1f1933d3d0af177dbc61c3e1 to your computer and use it in GitHub Desktop.
extension NSManagedObjectContext {
func performTask(_ block: @escaping (NSManagedObjectContext) -> Void) {
perform { [unowned self] in
block(self)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment