2

我正在开发一个简单的 iPhone 游戏。我正在使用if else if else if else循环。当我尝试调试 else 部分并将光标保持在变量上方时,它会显示一条'out of scope Summary Unavailable'消息。

我确信大括号是正确的,并且对于其他 else if 和 if 循环的一部分也可以正常工作。

为什么会这样?

请帮忙。

4

2 回答 2

1

检查您正在使用的变量,可能是您在其范围之外访问它们,尝试使用唯一的变量名。

于 2013-02-06T06:29:43.020 回答
0

Put break point just below your variable and type following in console gdb

  • p "your variable name if its primitive type like int"
  • po "your object name"

This will print the value in them.

于 2013-02-05T06:49:46.587 回答