gpt4 book ai didi

ios - 在 Swift UI 中使用对角线分割矩形 View

转载 作者:行者123 更新时间:2023-12-04 08:00:43 27 4
gpt4 key购买 nike

我是 SwiftUI 的新手,我正在尝试使用 UIKit 来实现一些非常容易的东西。基本上,我想在 View 中绘制这样的东西:
enter image description here
我想我可以使用 GeometryScanner 但我没有设法让它工作。任何帮助,将不胜感激。

最佳答案

您可以创建自己的 Triangle :

struct Triangle: Shape {
func path(in rect: CGRect) -> Path {
var path = Path()
path.move(to: CGPoint(x: rect.maxX, y: rect.minY))
path.addLine(to: CGPoint(x: rect.minX, y: rect.maxY))
path.addLine(to: CGPoint(x: rect.maxX, y: rect.maxY))
path.addLine(to: CGPoint(x: rect.maxX, y: rect.minY))
return path
}
}
并像这样使用它:
Rectangle()
.fill(Color.white)
.frame(width: 300, height: 200)
.overlay(
Triangle()
.fill(Color.red)
)

关于ios - 在 Swift UI 中使用对角线分割矩形 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66484710/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com