美文网首页
使用runtime Associate方法关联的对象,需要在主对

使用runtime Associate方法关联的对象,需要在主对

作者: natewang | 来源:发表于2018-08-11 20:55 被阅读76次

    不需要,会在object_dispose()方法中释放。

    NSObject 调 -dealloc
    只做一件事:调用 Objective-C runtime 中的 object_dispose() 方法 调用 object_dispose()

    • 为 C++ 的实例变量们(iVars)调用 destructors
    • 为 ARC 状态下的 实例变量们(iVars) 调用 -release
    • 解除所有使用 runtime Associate方法关联的对象
    • 解除所有 __weak 引用
    • 调用 free()

    相关文章

      网友评论

          本文标题:使用runtime Associate方法关联的对象,需要在主对

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