xcode 4 debugging shows 'Summary Unavailable' for most objects

后端 未结 7 2177
广开言路
广开言路 2020-12-16 10:08

Whilst using Xcode 4.0 and trying to debug and see what value is held in what variable - or see what objects are in an array etc, I always seem to get \"Summary Unavailable

相关标签:
7条回答
  • 2020-12-16 11:00

    You're not going wrong, Xcode 4 is. This problem is pretty common, unfortunately. Report it at http://bugreport.apple.com/ and hope for the best.

    In the meantime you can inspect variables using the console, which appears at the bottom of Xcode 4's window during debugging. If you have an object "myObj", you can inspect it in the console by typing "po myObj". It's a lot less convenient but it's better than not getting the information at all.

    0 讨论(0)
提交回复
热议问题