Skip to content

Instantly share code, notes, and snippets.

@bdsaglam
Created December 20, 2019 08:50
Show Gist options
  • Select an option

  • Save bdsaglam/b84752159285d6c0c936b62be4e42203 to your computer and use it in GitHub Desktop.

Select an option

Save bdsaglam/b84752159285d6c0c936b62be4e42203 to your computer and use it in GitHub Desktop.
Weak reference container in Swift
public final class WeakRef<T: AnyObject> {
weak var object: T?
init(_ object: T) {
self.object = object
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment