I love using the Xcode debugger. You can take a look at a variable\'s value and even change it.
But can I somehow DISPLAY the image that is referenced by an image va
If you like to work with the lldb console, use chisel command "visualize"
tip:
after the installation, you can set a conditional breakpoint after setting the UIImage with the action: "visualize myUIImageToShowWithQuickLook"
this will show you the image automatically when the debugger stops.