This may be in the "too hard basket", and might mean I just need to file an enhancement suggestion with the lads in Cupertino, however....
I'd like to know if it's possible when using the integrated debugger ...
to use the mouse context menu option "Copy", and instead of getting something like this:
jsonData NSCFString * 0xbd37df0
in the pasteboard, (which is great if i want to copy the object's address in hexadecimal format!), i'd like to be able to get the actual text that's in the string (or the description property if it's not an NSString).
this would make the debugger slightly more useful as i could then go and open up a url in safari, or check the actual contents of that JSON data string etc.
I know the console command "print-object" is there, which makes the debugger not altogether a lost cause, but is there perhaps some option i have not turned on to allow this?
I am using xcode 4.1 (maybe 4.2 or 4.3 has this feature?)

thanks.