美文网首页iOS学习iOS面试相关文章
dealloc中引用weakSelf导致的崩溃

dealloc中引用weakSelf导致的崩溃

作者: frankisbaby | 来源:发表于2018-03-07 17:10 被阅读15次

在dealloc中使用weakSelf会崩溃,apple给出的解释:

Cannot form weak reference to instance (0x137e06750) of class NewViewController. It is possible that this object was over-released, or is in the process of deallocation.

翻译:在对象正在释放的过程中,或者对象已经释放后,是不允许使用weak来引用实例变量的。这可能是出于防止野指针的出现。

相关文章

网友评论

    本文标题:dealloc中引用weakSelf导致的崩溃

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