Swift is very powerful, but how to debug it quickly?

I created a breakpoint. But there are many methods provided here. How do I know which one I should choose.

Don't guess: use "step in" in the Xcode debugger to follow the execution to whatever method it calls.

3 Likes

OK, thanks.