vote up 1 vote down star
2

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.

flag

74% 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 at 19:03

1 Answer

vote up 3 vote down check

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|flag

Your Answer

Get an OpenID
or

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