问题
I'm trying to execute an action every time a textField
's value is changed.
@Published var value: String = ""
var body: some View {
$value.sink { (val) in
print(val)
}
return TextField($value)
}
But I get below error.
Cannot convert value of type 'Published' to expected argument type 'Binding'
回答1:
This should be a non-fragile way of doing it:
class MyData: ObservableObject {
var value: String = "" {
willSet(newValue) {
print(newValue)
}
}
}
struct ContentView: View {
@ObservedObject var data = MyData()
var body: some View {
TextField("Input:", text: $data.value)
}
}
回答2:
If you want to observe value
then it should be a State
@State var value: String = ""
来源:https://stackoverflow.com/questions/56735382/how-to-observe-a-textfield-value-with-swiftui-and-combine