Open the breakpoint editor in Xcode with ? + 7
. From there you can see the breakpoints that are on (as indicated by dark blue) or off (with light blue). I highly suspect that you have a breakpoint set in your method.
The term Thread 1: Breakpoint 1.1
is the debugger's internal name for the breakpoint (I Assume you're reading this from the green bar of text?). It doesn't necessarily mean it is a
threading error, it's just telling you where it stopped.
You can press ^ + ? + Y
to Continue, or go to the Debug Menu and select other options. ? + ? + Y
will bring up the Debug area and a bar of buttons which correlate to the Debug Menu's actions.
HTH
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…