数据绑定,改变标题 -- @State

例子:
@State private var textInput: String = ""
@State private var title: String = ""

使用时 :
单向绑定(只显示):Text(self.title)
双向绑定:TextField("双向绑定", text: self.$textInput)
⚠️
类型为 Binding,才可设置双向绑定,即在属性前使用 $ 这个符号

例子:

// 当按钮点击后 执行 action,将 TextField 中得内容赋值给 title
Button(action: {
    self.title = self.textInput 
}, label: {
     Text("确定")
})

你可能感兴趣的:(数据绑定,改变标题 -- @State)