Skip to content

Instantly share code, notes, and snippets.

@uc-compass-bot
Created October 15, 2019 14:20
Show Gist options
  • Save uc-compass-bot/7d324073c4ff241109cbad6e0ec162db to your computer and use it in GitHub Desktop.
Save uc-compass-bot/7d324073c4ff241109cbad6e0ec162db to your computer and use it in GitHub Desktop.
Catch Retain Cycles Weak Box
import Foundation
class WeakBox<A: AnyObject> {
weak var unbox: A?
init(_ value: A) {
unbox = value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment