Pawriwes
Pawriwes

Reputation: 293

Any line by line debugging method in Xcode?

I remember using turbo c++ compiler where I could do line by line code debugging technique, and was a great tool for both learning and debugging. Is there the similar way to do in Xcode. Are there any other way rather that putting break points??

Upvotes: 0

Views: 2756

Answers (1)

Dr.Kameleon
Dr.Kameleon

Reputation: 22820

From Product->Debug menu (Xcode 4.+), try the following options (they provide quite a similar functionality ):

  • Step Over (F6)
  • Step Into (F7)
  • Step Out (F8)

Manual : Debugging with Xcode

Upvotes: 5

Related Questions