user3191102
user3191102

Reputation: 33

How to hide thread view while debugging in Xcode 6?

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

Answers (1)

Ortwin Gentz
Ortwin Gentz

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

Related Questions