About Variables Quick Look for Custom Types
The debugger in Xcode includes the variables Quick Look feature, a way to view variables in your app by displaying their contents graphically in a pop-up display. Quick Look lets you display a graphical rendering of object contents by pressing the Space bar with a variable selected in the debugger variables view.
At a Glance
The Xcode 5 debugger gave you the ability to dynamically visualize selected operating system class types with the variables Quick Look feature. This document addresses two important enhancements to this capability that were introduced with Xcode 5.1:
Variables instantiated from your custom types can render a Quick Look display.
Additional operating system classes now support Quick Look display.
Together these two enhancements provide flexibilty in how you display your variables when debugging. To provide your custom class with a Quick Look display in the debugger, you provide a method for Quick Look to use in the object class. The method, called by Xcode, returns an object with a type matching one of the operating system classes supported by Quick Look display.
A customized Quick Look method for each of your custom object classes can be implemented, each rendering a live representation of the underlying variable in the way that makes best sense for the type. For example, a Person
object could show an image of the person, or perhaps a map with a pin on a person’s home address, whichever is relevant to the implementation of the custom class in your context. You choose the operating system object type to return depending upon what best fits a rendering of your custom class objects.
See Also
Apple provides the following video presentations that show more about using the Xcode debugger:
WWDC 2014: Debugging with Xcode 6: Learn how apps enqueue work, explore and fix user interfaces, add custom Quick Look support.
WWDC 2013: Debugging with Xcode: Detect and fix performance problems using the Xcode graphical debugger.
WWDC 2013: Advanced Debugging with LLDB: Debug using Terminal and the Xcode graphical debugger.
Copyright © 2014 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2014-09-17