gpt4 book ai didi

ios - 表单中的 SwiftUI 选择器不显示复选标记

转载 作者:行者123 更新时间:2023-12-01 15:24:58 26 4
gpt4 key购买 nike

我在 Form 中嵌入了一个 Picker,但是我无法让它工作,因为它在表单中显示了一个复选标记和选定的值。

NavigationView {
Form {
Section {
Picker(selection: $currencyCode, label: Text("Currency")) {
ForEach(0 ..< codes.count) {
Text(self.codes[$0]).tag($0)
}
}
}
}
}

No checkmark and no selected value

最佳答案

TL;博士

您的变量 currencyCode与您 ForEach 中每个元素的 ID 类型不匹配.要么遍历您的 ForEach 中的代码,或通过您的 Picker一个索引。

下面是三个等效的例子。请注意 @State传递给 Picker 的变量始终匹配 ForEach 的元素的 ID迭代:

另请注意,我为 @State 选择了默认值。不在数组中的变量 ("", -1, UUID()),因此加载表单时不会显示任何内容。如果您想要一个默认选项,只需将其设为您的 @State 的默认值即可。多变的。

示例 1:迭代代码(即字符串)

struct ContentView: View {
@State private var currencyCode: String = ""
var codes: [String] = ["EUR", "GBP", "USD"]

var body: some View {
NavigationView {
Form {
Section {
Picker(selection: $currencyCode, label: Text("Currency")) {
// ID is a String ----v
ForEach(codes, id: \.self) { (string: String) in
Text(string)
}
}
}
}
}
}
}

示例 2:迭代索引(即 Int)
struct ContentView: View {
@State private var selectedIndex: Int = -1
var codes: [String] = ["EUR", "GBP", "USD"]

var body: some View {
NavigationView {
Form {
Section {
Picker(selection: $selectedIndex, label: Text("Currency")) {
// ID is an Int --------------v
ForEach(codes.indices, id: \.self) { (index: Int) in
Text(self.codes[index])
}
}
}
}
}
}
}

示例 3:通过 ID 类型(即 UUID)迭代可识别的结构
struct Code: Identifiable {
var id = UUID()
var value: String

init(_ value: String) {
self.value = value
}
}

struct ContentView: View {
@State private var selectedUUID = UUID()
var codes = [Code("EUR"), Code("GBP"), Code("USD")]

var body: some View {
NavigationView {
Form {
Section {
Picker(selection: $selectedUUID, label: Text("Currency")) {
// ID is a UUID, because Code conforms to Identifiable
ForEach(self.codes) { (code: Code) in
Text(code.value)
}
}
}
}
}
}
}

关于ios - 表单中的 SwiftUI 选择器不显示复选标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58103437/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com