Reputation: 23483
I'm trying to debug my program, and I have a dictionary that I'm trying to inspect in the debugger; however, when I view the dictionary in the debugger, it looks like this:
Most of the keys are listed as NSTaggedPointerString
and I'm not able to see the value. Why is this and how can I get the value of the keys?
Upvotes: 4
Views: 1176
Reputation: 419
As rmaddy said in the comment above, you can right-click on the key, or any NSTaggedPointerString in the Variables View and select "Print Description of VariableNameHere", and it will print out to the Console.
I'm just posting this as an answer to make it more obvious to people who need the answer, like me.
Upvotes: 0