protocol
CustomPlaygroundQuickLookable
Inheritance | View Protocol Hierarchy → |
---|---|
Import |
|
Instance Variables
A custom playground Quick Look for this instance.
If this type has value semantics, the PlaygroundQuickLook
instance
should be unaffected by subsequent mutations.
Declaration
var
customPlaygroundQuickLook
:
PlaygroundQuickLook
{
get
}
A type that explicitly supplies its own playground Quick Look.
The
CustomPlaygroundQuickLookable
protocol is deprecated, and will be removed from the standard library in a future Swift release. To customize the logging of your type in a playground, conform to theCustomPlaygroundDisplayConvertible
protocol.If you need to provide a customized playground representation in Swift 4.0 or Swift 3.2 or earlier, use a conditional compilation block:
Deprecated: CustomPlaygroundQuickLookable will be removed in a future Swift version. For customizing how types are presented in playgrounds, use CustomPlaygroundDisplayConvertible instead..