CoreData generated class – Is there memory leak risk of not using weak in inverse relationship? – Ios swift
When come to circular reference, it comes with risk of memory leaking, by not using a weak keyword. For instance :- Memory leak without using weak class Human { deinit { print("bye bye from Human") } init(_ pet: Pet) {…