有什么方法可以在ObservableObject中将计算属性定义为@Published属性吗?
我知道在@Binding的情况下是可能的。
== Parsed Logical Plan ==
LogicalRDD [a#168], false
答案 0 :(得分:0)
您可以将willSet
用于发布值。
@Published var myVar : Bool = false {
willSet {
objectWillChange.send()
print("Will set to new variable, which is \(newValue)")
}
}
newValue
以获取新值