Does calling a method inside a block that calls another method referring to self cause a retain cycle?

扶醉桌前 提交于 2019-11-30 14:52:14
dasblinkenlight

Unlike blocks, methods are not objects; they cannot hold a permanent reference to objects.

Your code would not cause a retain cycle. The fact that the code inside doSecond references self explicitly does not mean that self would get retained an extra time. When your block calls doSecond, its self comes from the weakSelf reference inside doFirst.

Note: When you store blocks as properties, use (nonatomic, copy) instead of (nonatomic, strong).

No It won't. Because It just point to method which won't hold whatwhere inside methods which just an reference as like object.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!