19

我认为这个错误消息对于 Xcode 12 中的 SwiftUI 来说是新的,因为它在 Google 中的命中率为 0,而消息本身相当通用:

在安装在 View 之外访问 State 的值。这将导致初始值的恒定绑定并且不会更新。

我有以下代码(删除了一些绒毛):

public struct ContentView: View {
    @ObservedObject var model: RootViewModel

    public var body: some View {
        VStack(alignment: .center, content: {
            Picker(selection: model.$amount, label: Text("Amount")) {
                Text("€1").tag(1)
                Text("€2").tag(2)
                Text("€5").tag(5)
                Text("€10").tag(10)
            }.pickerStyle(SegmentedPickerStyle())
            Text("Donating: €\(model.amount)").font(.largeTitle)
        }).padding(.all, 20.0)
    }
}

public class RootViewModel: ObservableObject {
    @State public var amount: Int = 1
}

我曾经有过field权利,ContentView而且效果很好。现在 UI 不再更新,而是收到了运行时警告。

4

1 回答 1

29

感谢@Andrew的回答,我想出了如何让它再次工作。首先,您将其更改@State@Published

    @Published public var amount: Int = 1

接下来,您需要更改Picker绑定到数据的方式:

            Picker(selection: $model.amount, label: Text("Amount")) {
                Text("€1").tag(1)
                Text("€2").tag(2)
                Text("€5").tag(5)
                Text("€10").tag(10)
            }.pickerStyle(SegmentedPickerStyle())

所以我们从model.$amount$model.amount

于 2020-06-29T08:21:08.693 回答