Aug 31, 2018 · 1 min read
What happens if you have a weak var, and iterate with a guard let over it, and use it in an scaping closure. Is this modifying the reference count over something?
Ex:
weak var something: Foo?
guard let something = something else { return }
otherThing.saveClosure {
something.more()
}