当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift PlaygroundQuickLook用法及代码示例


类型别名

PlaygroundQuickLook

可用作快速查看表示的类型总和。

声明

iOS、iPadOS、macOS、tvOS、watchOS

typealias PlaygroundQuickLook

麦克催化剂

typealias PlaygroundQuickLook = _PlaygroundQuickLook

详述

PlaygroundQuickLook 协议已弃用,并将在未来的 Swift 版本中从标准库中删除。要在 Playground 中自定义类型的日志记录,请遵循 CustomPlaygroundDisplayConvertible 协议,该协议不使用 PlaygroundQuickLook 枚举。

如果您需要在 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

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 PlaygroundQuickLook。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。