當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift Never 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大神的英文原創作品 Never previewInterfaceOrientation(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。