Stabledog
Stabledog

Reputation: 3370

In the Xcode debugger, is it possible to do "run to current line"?

In Xcode, there doesn't seem to be an obvious way to do this. Visual Studio's debugger provides a keyboard shortcut which sets a temporary breakpoint on the line selected in the code window, runs the debugger to that point, and then removes the breakpoint. In Xcode, it seems that you have to manually set and remove the breakpoint to accomplish the same thing.

Is there a simpler way?

Upvotes: 2

Views: 480

Answers (1)

Paul R
Paul R

Reputation: 212959

Right-click on breakpoint border => Continue to Here

Upvotes: 6

Related Questions