美文网首页
iOS中weakSelf与strongSelf

iOS中weakSelf与strongSelf

作者: 不成活不疯魔 | 来源:发表于2018-11-10 13:12 被阅读0次

    define WEAK_SELF __weak typeof(self)weakSelf = self;

    define STRONG_SELF __strong typeof(weakSelf)self = weakSelf;

    这样定义有问题吗?
    事实证明,没问题的
    原因:使用nslog打印,发现,block内外的self内存地址不同

    相关文章

      网友评论

          本文标题:iOS中weakSelf与strongSelf

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