self is merely a captured variable inside a block and doesn't reference the block itself, so how does a block reference itself without having an explicit captured variable for that purpose?
| ||||
|
feedback
|
| |||
|
feedback
|
|
I found this pattern to work and stable for ARC (automatic reference counting), both in Debug and Release builds.
Initially I tried just putting a | |||
|
feedback
|
|
I have never tried this before and not 100% sure it's useful, if valid, but for example:
You probably have declare the variable with __block to prevent self-retain cycle. | |||||||||||
feedback
|