Xcode中'breakpoint'标记颜色的含义是什么?

时间:2022-09-13 20:43:37

When I set a breakpoint (double click the border of the editor at a particular line), there are 3 colors: 1. blue 2. faded blue 3. yellow with blue border

当我设置断点(双击特定行的编辑器边框)时,有3种颜色:1。蓝色2.褪色蓝色3.黄色带蓝色边框

can you please tell me what are the meaning of each color?

你能告诉我每种颜色的含义是什么吗?

Thank you.

谢谢。

1 个解决方案

#1


9  

Dark blue means "break point set, armed, and ready to go."

深蓝色意味着“断点设置,武装,准备好去”。

Light blue means "break point set, but you've temporarily suspended it" (perhaps by accidentally clicking it again)

淡蓝色表示“断点设置,但您暂时将其暂停”(可能是意外再次点击)

Orange means "the code where you've defined this breakpoint is not (yet?) loaded into the program; once it does load in, the break point will be set and armed."

橙色表示“您已定义此断点的代码(尚未?)加载到程序中;一旦加载,断点将被设置并启用。”

#1


9  

Dark blue means "break point set, armed, and ready to go."

深蓝色意味着“断点设置,武装,准备好去”。

Light blue means "break point set, but you've temporarily suspended it" (perhaps by accidentally clicking it again)

淡蓝色表示“断点设置,但您暂时将其暂停”(可能是意外再次点击)

Orange means "the code where you've defined this breakpoint is not (yet?) loaded into the program; once it does load in, the break point will be set and armed."

橙色表示“您已定义此断点的代码(尚未?)加载到程序中;一旦加载,断点将被设置并启用。”