Skip to content

Instantly share code, notes, and snippets.

@almaleh
Created March 2, 2020 18:15
Show Gist options
  • Save almaleh/9c11409276fe1059e354f6fd1e2fa0bf to your computer and use it in GitHub Desktop.
Save almaleh/9c11409276fe1059e354f6fd1e2fa0bf to your computer and use it in GitHub Desktop.
let view = self.view
let workItem = DispatchWorkItem {
UIView.animate(withDuration: 1.0) { // adding [weak self] here will introduce a cycle
view?.backgroundColor = .red
}
}
self.workItem = workItem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment