Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的代码中的一个变量正在某处被取消分配,我不知道在哪里。我正在尝试调试它,但是要搜索很多代码。
有没有办法跟踪一个变量,并显示它在哪里被修改?
在 XCode 的调试窗口中右键单击该变量,然后选择“Watch variable”。
或者,使用 gdb: http ://scottmcpeak.com/memory-errors/
这在此处的类似主题中进行了讨论: Tracking variable or memory change in Xcode?