You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
487 B
487 B
This will happen in one of two cases generally:
- One uses
weakSelfbut forgot to declare it weak first. - One is using
strongSelf, declared in a block, in another (inside) block. This changes the delicate balance of theweakSelf/strongSelfuse in the first block. The retain cycle is avoided there becausestrongSelfis a local variable to the block. IfstrongSelfis used in the inside block, then it's not a local variable anymore, but a captured variable.