当前位置:   article > 正文

SwiftUI WWDC21 新增预览功能之 01 previewInterfaceOrientation Previews in Xcode

previewinterfaceorientation

SwiftUI WWDC21 新增预览功能之 01 previewInterfaceOrientation Previews in Xcode

previewInterfaceOrientation 是什么

覆盖预览的方向。

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

参数与返回值

  • 返回值
    使用给定方向的预览。

  • 参数
    value
    用于预览的方向。

讨论

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

struct CircleImage_Previews: PreviewProvider {
    static var previews: some View {
        CircleImage()
            .previewInterfaceOrientation(.landscapeRight)
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

加入我们一起学习SwiftUI

QQ:3365059189
SwiftUI技术交流QQ群:518696470
教程网站:www.openswiftui.com

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/462547
推荐阅读
相关标签
  

闽ICP备14008679号