如何找到 SwiftUI UIViewRepresentable 的框架

How to find the frame of a SwiftUI UIViewRepresentable

我正在尝试将 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 最大可能的 space。

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 的大小传播到其父级,类似于您在本机 SwiftUI 视图上使用首选项键的方式?

由于使用了GeometryReader

尝试使用

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

当使用 UIViewRepresentable 时,你描述的贪婪是使用 contentHuggingPriority 控制的,就像它总是在 UIKit 中一样。

所以在你的 makeUIView 函数中,你可以这样做:

// resist being made larger than the intrinsicContentSize
view.setContentHuggingPriority(.defaultHigh, for: .horizontal)
view.setContentHuggingPriority(.defaultHigh, for: .vertical)