Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个简单的 iPhone 游戏。我正在使用if else if else if else循环。当我尝试调试 else 部分并将光标保持在变量上方时,它会显示一条'out of scope Summary Unavailable'消息。
if else if else if else
'out of scope Summary Unavailable'
我确信大括号是正确的,并且对于其他 else if 和 if 循环的一部分也可以正常工作。
为什么会这样?
请帮忙。
检查您正在使用的变量,可能是您在其范围之外访问它们,尝试使用唯一的变量名。
Put break point just below your variable and type following in console gdb
This will print the value in them.