-1

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.

enter image description here

how to resolve it?

Community
  • 1
  • 1
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277

1 Answers1

1

You should technically use __weak after the type per Apple's Documentation.

I usually write it like this:

__typeof__(self) __weak weakSelf = self;
dalton_c
  • 6,876
  • 1
  • 33
  • 42