Is it possible to see the numeric value of an NSNumber in the debugger datatip on in the variable watch window?

I store an Integer value in NSNumber and want to see this value during debugging.

I tried some of the data formatters in the debugger already, but it wasn't much help.

link|improve this question

71% accept rate
This already works in the summary column in the debugger window or inline data tip when you hover over the variable in your editor. Am I misunderstanding your question? – keremk Apr 15 '09 at 19:03
feedback

1 Answer

up vote 4 down vote accepted

Open the Debugger view and in the Summary column enter

{(int)[$VAR intValue]}

or whatever interpretation is most appropriate for what you want to see in the Debugger.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.