我在我的 iPhone 应用程序上使用 ARC,我试图捕捉一个错误,它给我以下输出(带NSZombieEnabled, MallocStackLogging and guard malloc
):
*** -[MyCustomClass retain]: message sent to deallocated instance 0x534e00
如何使用 ARC 跟踪保留计数?instance 0x534e00
为了找到释放的实例,我应该如何使用 LLDB 控制台(当然会出现任何其他实例)?
为了记录:我没有retain
在我的代码中使用任何地方。
谢谢!