gpt4 book ai didi

swift - 在工作表内的表单中使用选取器不起作用

转载 作者:行者123 更新时间:2023-12-03 08:37:13 26 4
gpt4 key购买 nike

我需要在工作表内的表单中使用选择器。但这是行不通的。如果我单击选择器,我将无法选择元素。

struct ContentView: View {
@State private var showSheet = false

var body: some View {
Button("Sheet", action: {
showSheet.toggle()
})
.sheet(isPresented: $showSheet, content: {
SecondView()
})
}
}

struct SecondView: View {
var body: some View {
Form {
Picker(selection: .constant(1), label: Text("Picker")) {
Text("1").tag(1)
Text("2").tag(2)
}
}
}
}

这里有什么建议吗?

最佳答案

它需要NavigationView,即

    .sheet(isPresented: $showSheet, content: {
NavigationView {
SecondView()
}
})

另一种方法是直接在 SecondView 中嵌入 FormNavigationView 中。

关于swift - 在工作表内的表单中使用选取器不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63573441/

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