views:

14

answers:

1

Hi all! I wish look inside my NSDictionary during my debug operation...what is the fastest and best way to do this?? xcode doesn't have a watch like visual studio to look the objects?

alt text

thanks!

+1  A: 

you can open debugger (CMD+SHIFT+Y) select your dictionary instance, right click on it and choose "Print description in console". Then open run log (CMD+SHIFT+R) and you'll see the contents of your dictionary. Isn't so good as in VS, but I haven't find another way yet.
Screenshot

Alexander Voloshyn
thanks Alexander! I'll try!
ghiboz