我想使用参数从子View
调用父View
的函数。
以下代码是错误的。
struct ContentView: View {
func update(value: Double) {
print("called update: \(value)")
}
var body: some View {
ChildView(onUpdate: update)
}
}
struct ChildView: View {
var onUpdate: (value: Double) -> ()
var body: some View {
VStack {
Text("child view")
Button(action: {
self.onUpdate(value: 3.0)
}) {
Text("onUpdate")
}
}
}
}
答案 0 :(得分:1)
此处是固定变体。使用Xcode 11.4 / iOS 13.4进行了测试
struct ChildView: View {
var onUpdate: (Double) -> () // << no labels, just types !!
var body: some View {
VStack {
Text("child view")
Button(action: {
self.onUpdate(3.0)
}) {
Text("onUpdate")
}
}
}
}