天天看点

Block在ARC中的使用

目的:防止循环引用

Block在ARC中的使用

ARC中使用block模板 __weak  id  weakself =  self ;

block^{

     __strong  id  strongself = weakself;

     if (strongself)

    {

         // 填写代码

    }

};