美文网首页
【Swift】block防止self循环引用

【Swift】block防止self循环引用

作者: FineFan | 来源:发表于2021-12-02 15:58 被阅读0次

方法1、

 weak var weakSelf =self

        self.block = {() -> () in

            if let strongSelf = weakSelf {

              //使用self

            }

        }

方法2、

 self.block = {[weak self]() -> () in

                //使用self?

             }

相关文章

网友评论

      本文标题:【Swift】block防止self循环引用

      本文链接:https://www.haomeiwen.com/subject/xloyxrtx.html