类型别名
Playground
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+
相关用法
- Swift PrefixSequence contains(where:)用法及代码示例
- Swift PartialRangeUpTo relative(to:)用法及代码示例
- Swift PrefixSequence flatMap(_:)用法及代码示例
- Swift PrefixSequence split(separator:maxSplits:omittingEmptySubsequences:)用法及代码示例
- Swift PrefixSequence shuffled()用法及代码示例
- Swift PartialRangeUpTo ~=(_:_:)用法及代码示例
- Swift PrefixSequence forEach(_:)用法及代码示例
- Swift PartialRangeFrom ~=(_:_:)用法及代码示例
- Swift PrefixSequence first(where:)用法及代码示例
- Swift PrefixSequence drop(while:)用法及代码示例
- Swift PrefixSequence starts(with:)用法及代码示例
- Swift PrefixSequence dropLast(_:)用法及代码示例
- Swift PrefixSequence reduce(into:_:)用法及代码示例
- Swift PrefixSequence reduce(_:_:)用法及代码示例
- Swift PartialRangeFrom用法及代码示例
- Swift PrefixSequence elementsEqual(_:)用法及代码示例
- Swift PrefixSequence min(by:)用法及代码示例
- Swift PartialRangeThrough ~=(_:_:)用法及代码示例
- Swift PrefixSequence filter(_:)用法及代码示例
- Swift PrefixSequence enumerated()用法及代码示例
- Swift PrefixSequence shuffled(using:)用法及代码示例
- Swift PrefixSequence max(by:)用法及代码示例
- Swift PrefixSequence max()用法及代码示例
- Swift PrefixSequence suffix(_:)用法及代码示例
- Swift PrefixSequence allSatisfy(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 PlaygroundQuickLook。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。