keywind
keywind

Reputation: 1195

Remove watched variable in Xcode 4.5.2

I could watch a variable though "Watch 'variable'" in the Xcode debug area, and it works because Xcode breaks when the watched variable varies. But as I see nothing like "watch window", how could I remove the watched variable? or see the variables I'm watching? Through LLDB command?

Upvotes: 2

Views: 3334

Answers (1)

Jason Molenda
Jason Molenda

Reputation: 15405

You can disable or delete watchpoints through the Breakpoint navigator in Xcode. (View > Navigators > Show Breakpoint Navigator). You can also do it through the lldb console window with the watch delete command.

Upvotes: 10

Related Questions