Is there a feature in Xcode that allow you to inspect references to NSImage while debugging? Silimar to how webkit inspector let you inspect image references in webpages. Failing that, what's the easiest way to debug while working with NSIMages?

|
Is there a feature in Xcode that allow you to inspect references to NSImage while debugging? Silimar to how webkit inspector let you inspect image references in webpages. Failing that, what's the easiest way to debug while working with NSIMages?
|
|||
|
|
No, as far as i know there is no such feature in Xcode. If your application creates or manipulates images and you would like to see the visual representation of the data behind a reference to NSImage, you could dump the image to the filesystem. Just create a category, which adds -(void)dump to NSImage like this:
Now you can set a breakpoint somewhere in your code and call the method dump on your reference of NSImage by typing following in the command line of the debugger:
the only change in your source code is the import for the category. |
|||||||
|