We've totally forgotten to capture self and its properties when referencing it within a closure. (Note: the compiler didn't warn us.) Now our application is full with strong reference cycles. To fix them, we have to add the capture list to each closure one-by-one.
How can we find them all? I thought to search for in
but it results in too much results including comments, for cycles.
Good old Objective C would help me searching for ^
. And it would warn us...