gpt4 book ai didi

swiftui - 如何为预览创建一个简单的绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 07:31:12 24 4
gpt4 key购买 nike

随着新的@Binding委托(delegate)和预览,我觉得总是要创建一个 @State static var 有点尴尬创建必要的绑定(bind):

struct TestView: View {
@Binding var someProperty: Double
var body: some View {
//...
}
}

#if DEBUG
struct TestView_Previews : PreviewProvider {
@State static var someProperty = 0.7
static var previews: some View {
TestView(someProperty: $someProperty)
}
}
#endif


有没有更简单的方法来创建绑定(bind),代理一个简单的值来测试和预览?

最佳答案

您可以使用 .constant(VALUE)在您的预览中,无需创建 @State .

/// A value and a means to mutate it.
@propertyWrapper public struct Binding<Value> {

/// Creates a binding with an immutable `value`.
public static func constant(_ value: Value) -> Binding<Value>
}
例如
TestView(someProperty: .constant(5.0))

关于swiftui - 如何为预览创建一个简单的绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56485304/

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