以下测试代码在单击时注册选择。
我曾尝试在分段式和轮式捡拾器之间切换,但是在单击时都未注册选择。
NavigationView {
Form {
Picker(selection: self.$settings.senatorChoice, label: Text("Choose a senator")) {
ForEach(0 ..< self.customSenators.count) {
Text(self.customSenators[$0])
}
}.pickerStyle(WheelPickerStyle())
.labelsHidden()
.padding()
}
}
向每个选择器项目添加标签,使其具有唯一性,例如
Text(self.customSenators[$0]).tag($0)
再次检查settings.senatorChoice
是否为Int
。 ForEach
中范围的类型必须与Picker
绑定的类型相匹配。 (有关更多信息,请参见here。)>
此外,您可能想使用ForEach(self.customSenators.indices, id: \.self)
。如果元素被添加到customSenators
中或从中删除,这可以防止可能的崩溃和过时的UI。 (有关更多信息,请参见here。)>
以下测试代码在单击时注册选择。
struct Settings {
var senatorChoice: Int = 0
}
struct ContentView: View {
@State private var settings = Settings()
@State private var customSenators = ["One","Two","Three"]
var body: some View {
NavigationView {
Form {
Picker(selection: self.$settings.senatorChoice, label: Text("Choose a senator")) {
ForEach(0 ..< customSenators.count) {
Text(self.customSenators[$0])
}
}.pickerStyle(SegmentedPickerStyle())
.labelsHidden()
.padding()
Text("value: \(customSenators[settings.senatorChoice])")
}
}
}
}
以下测试代码在单击时注册选择。