Skip to content

Instantly share code, notes, and snippets.

@alemar11
Created July 20, 2017 07:32
Show Gist options
  • Save alemar11/b6cad07889149d187420461dffc876af to your computer and use it in GitHub Desktop.
Save alemar11/b6cad07889149d187420461dffc876af to your computer and use it in GitHub Desktop.
weakify
public func weakify <T: AnyObject>(_ object: T) -> T? {
return { [weak object] in return object }()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment