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


Swift Mirror.AncestorRepresentation.customized(_:)用法及代码示例


案子

Mirror.AncestorRepresentation.customized(_:)

使用最近祖先的customMirror 实现为该祖先创建镜像。

声明

case customized(() -> Mirror)

详述

从这样的祖先派生的其他类被赋予默认镜像。此选项的有效负载应始终为 { super.customMirror }


var customMirror: Mirror {
    return Mirror(
        self,
        children: ["someProperty": self.someProperty],
        ancestorRepresentation: .customized({ super.customMirror })) // <==
}

可用版本

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

相关用法


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