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


Swift Optional previewInterfaceOrientation(_:)用法及代码示例


实例方法

previewInterfaceOrientation(_:)

覆盖预览的方向。

声明

func previewInterfaceOrientation(_ value: InterfaceOrientation) -> some View

返回值

使用给定方向的预览。

参数

value

用于预览的方向。

详述

默认情况下,设备预览显示为正面朝上,使用方向 InterfaceOrientation/portrait 。您可以使用 InterfaceOrientation 结构中的值之一更改预览的方向:


struct CircleImage_Previews: PreviewProvider {
    static var previews: some View {
        CircleImage()
            .previewInterfaceOrientation(.landscapeRight)
    }
}

可用版本

iOS 15.0+, iPadOS 15.0+, macOS 12.0+, Mac Catalyst 15.0+, tvOS 15.0+, watchOS 8.0+

相关用法


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