Reputation: 49
is there any way to see the step by step debugging of the code in objective C, like we use to do in Turbo C with the keyboard key of 'F7 / F8'. to see the line by line execution?
Upvotes: 2
Views: 1169
Reputation: 49376
Sure. If you're using XCode (ala 99.99999% of Objective C users), just set a breakpoint, and when hit, control GDB either with the normal stepwise commands, or with the little interface toolbar that appears at the top of the source window.
For keyboard shortcuts, this guide has as section called "Run".
Upvotes: 3