设置环境变量:
只在DEBUG版本设置,自己调试使用,设置这两个参数则内存是不会释放掉的。
当出现message sent to deallocated instance EXC_BAD_ACCESS,会在xcode console打印出类似的日志:
2015-09-09 12:00:54.073 TrialTest[71354:3044411] *** -[ZNNullDelegateViewController retain]: message sent to deallocated instance 0x7b857d20
在Mac terminal当中输入如下命令可以得到格式化的输出:
malloc_history 71354 0x7b857d20 | sed -e $‘s/|/\\\n/g‘
时间: 2024-10-13 17:00:06