Reputation: 33
i am new to debugging in Xcode, how can hide the view of thread to see my lines of execution in my program. it is currently showing some stacks or threads which i don't want to see.
Upvotes: 1
Views: 535
Reputation: 54111
You can hide the left pane using Cmd-0
. However you usually want to see the current thread and its backtrace when debugging.
Upvotes: 1