Xcode full stack trace

NaXir picture NaXir · Apr 11, 2013 · Viewed 58.6k times · Source

While debugging is there anyway to see a complete stack trace, list of methods called in main thread. Or any way to print them on command window.

Answer

Alex Iceman picture Alex Iceman · Nov 6, 2014

Use the bt command in (lldb).

Once paused or after a crash, just type bt into the debug console.
It will print the full stack trace.

sample output of bt command