gpt4 book ai didi

uikit - 如何找到 SwiftUI UIViewRepresentable 的框架

转载 作者:行者123 更新时间:2023-12-04 14:16:32 27 4
gpt4 key购买 nike

我正在尝试将 UILabel 的自定义子类包装在 UIViewRepresentable 中,以便在 SwiftUI 中使用它。我正在使用 .sizeToFit 并打印框架,它在包装器中时看起来是正确的:

func makeUIView(context: Context) -> CustomUILabel {
let view = CustomUILabel()
view.customProperty = model.customProperty
view.sizeToFit()
print(model.latex,view.frame.size) // this prints the correct size, how to propagate?
return view
}

但是当我在 VStack 中运行它时,它会以尽可能大的空间绘制 UIViewRepresentable

var body: some View {
GeometryReader{ geometry in
VStack(spacing: 0){
Rectangle()
.fill(Color.red)
.frame( height: geometry.size.height/2 - 5 + self.draggedOffset.height)
Rectangle()
.fill(Color.orange)
.frame(height: 10)
custonView(model:self.model)
Spacer()
}
}

有没有办法将 UIView 的大小传播到其父 View ,类似于您在原生 SwiftUI View 上使用首选项键的方式?

最佳答案

这是由于使用了GeometryReader

尝试使用

custonView(model:self.model)
.fixedSize()

关于uikit - 如何找到 SwiftUI UIViewRepresentable 的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59573879/

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