Monday
Jun222009
Debugging using CFShow
Debugging in Xcode doesn't always give you the level of details you need. The screenshot below shows that Xcode doesn't output what's in the NSCFDictionary object.

All hope is not lost. To get more details about your object, you can drop into gdb from within Xcode and invoke a CoreFoundation method CFShow:
(gdb) call (void) CFShow(your_obj)

tagged
cfshow,
debugging in
Development
cfshow,
debugging in
Development 

