How do I expand stack traces in XCode 4

后端 未结 1 960
感情败类
感情败类 2021-02-19 01:59

XCode 4 has a really stupid feature that \"summarizes\" stack traces in the debugger by showing the first and last two items in the call stack. Does anyone know how to eliminate

1条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-19 02:20

    If you want to see the entire stack trace, drag the slider at the bottom left of the debug navigator (below the stack traces) all the way to the right.

    It's not simply showing the first two and the last one, though. Rather, it's showing the top and bottom of the stack, as well as any code that comes from your application. The assumption is that you often don't care about the internals of system frameworks. You can adjust the slider to get varying levels of detail.

    0 讨论(0)
提交回复
热议问题