Xcode Debugger: What does the blue italic text mean?

前端 未结 2 1920
孤城傲影
孤城傲影 2020-12-11 21:21

Here\'s a screenshot:

\"enter

Clearly it indicates that the x coordinate of m

2条回答
  •  时光说笑
    2020-12-11 22:14

    The blue italic text means that the value of that variable (or expression) has changed since the last time the program paused.

    “L” in the green square means that c is a local variable. “A” in a purple square means a function or method argument (e.g. you will see this next to self). “V” in a green square means some other type of variable, like an instance variable or a global variable. There may be others but I don't remember them.

提交回复
热议问题