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.
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.