Type Alias

PlaygroundQuickLook

The sum of types that can be used as a Quick Look representation. 「クイックルック」表現として使われることのできる型の総和。

Declaration 宣言

typealias PlaygroundQuickLook

Discussion 解説

The PlaygroundQuickLook 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 the CustomPlaygroundDisplayConvertible protocol, which does not use the PlaygroundQuickLook enum. PlaygroundQuickLookプロトコルは推奨されません、そして将来のSwiftリリースで標準ライブラリから取り除かれるでしょう。あなたの型のログ取りをプレイグラウンドにおいてカスタマイズするには、CustomPlaygroundDisplayConvertibleプロトコルに準拠してください、それはPlaygroundQuickLook enumを使いません。

If you need to provide a customized playground representation in Swift 4.0 or Swift 3.2 or earlier, use a conditional compilation block: あなたがカスタマイズされたプレイグラウンド表現をSwift 4.0またはSwift 3.2以前において提供する必要があるならば、条件コンパイルブロックを使ってください:


#if swift(>=4.1) || (swift(>=3.3) && !swift(>=4.0))
    // With Swift 4.1 and later (including Swift 3.3 and later), use
    // the CustomPlaygroundDisplayConvertible protocol.
#else
    // With Swift 4.0 and Swift 3.2 and earlier, use PlaygroundQuickLook
    // and the CustomPlaygroundQuickLookable protocol.
#endif

See Also 参照

Customizing Your Type's Reflection あなたの型のリフレクションのカスタマイズ