4

Here's a screenshot:

enter image description here

Clearly it indicates that the x coordinate of my struct differs from the y coordinate, however their values are the same. How do they differ?

While we're at it... This one should be easier... What does the capital L icon indicate?

4

2 回答 2

8

蓝色斜体文本表示自上次程序暂停以来该变量(或表达式)的值已更改。

绿色方块中的“L”表示这c是一个局部变量。紫色方块中的“A”表示函数或方法参数(例如,您将在 旁边看到self)。绿色方块中的“V”表示其他类型的变量,例如实例变量或全局变量。可能还有其他人,但我不记得了。

于 2013-09-14T04:05:54.743 回答
0

“L”代表局部变量。查看Xcode 用户指南中的变量窗格部分。我想蓝色字体代表行执行之前或到达断点时的预期值。

于 2013-09-14T04:04:39.693 回答