XCode预览常用方法

2021/10/7 6:13:35

本文主要是介绍XCode预览常用方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

修改预览时手机拿的方向

  • landscapeLeft - 左横向
  • landscapeRight - 右横向
  • portrait - 纵向
  • portraitUpsideDown - 纵向颠倒
.previewInterfaceOrientation(.landscapeLeft)

设置预览时手机明暗模式

  • light
  • dark
.preferredColorScheme(.light)

设置预览不展示手机

  • sizeThatFits - 只显示内容
  • fixed - 设置内容大小
  • device - 包含手机
.previewLayout(.sizeThatFits)

设置预览显示名称

.previewDisplayName("Circle")

设置预览设备

.previewDevice(PreviewDevice(rawValue: "iPad Pro (11-inch)"))

私人博客:https://blog.hongdenglv.com/



这篇关于XCode预览常用方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程