I have found this solution to resolve this issue with block link
but seems there is another problem as well. Please check screenshot to understand my problem.
how to resolve it?
I have found this solution to resolve this issue with block link
but seems there is another problem as well. Please check screenshot to understand my problem.
how to resolve it?
You should technically use __weak
after the type per Apple's Documentation.
I usually write it like this:
__typeof__(self) __weak weakSelf = self;