Dealloc not being called on ARC app

前端 未结 7 1193
盖世英雄少女心
盖世英雄少女心 2020-12-12 18:21

I have a UIViewController that is pushed onto a container controller and then popped off, and using the allocations instrument, I can see that the view controller is destroy

相关标签:
7条回答
  • 2020-12-12 19:00

    My problem was delegates.

    Check your delegates! The delegate property should have weak specified:

    weak var delegate: SomeProtocol?

    or

    @property (weak, nonatomic) id<SomeProtocol> delegate;

    0 讨论(0)
提交回复
热议问题