SwiftUI:检测到约束含糊地建议 table 视图单元格内容视图的高度为零的情况
SwiftUI: Detected a case where constraints ambiguously suggest a height of zero for a table view cell's content view
如何解决出现警告的原因?
struct ContentView: View {
@State private var selectedDate: Date = Date()
var body: some View {
Form {
DatePicker("Date", selection: $selectedDate, displayedComponents: .date)
}
}
}
解决方法是使用 List
视图而不是 Form
。
这完全取决于您想在 Form
中放入什么。
出于演示目的,使用 List
,您的代码将如下所示:
struct ContentView: View {
@State private var selectedDate: Date = Date()
var body: some View {
List {
DatePicker("Date", selection: $selectedDate, displayedComponents: .date)
}
.listStyle(InsetGroupedListStyle())
}
}
上面给出了与使用 List
相同的视觉效果 (UI),并且没有显示警告。
因为您的 Form
一切正常,我真的不认为有必要将您的 Form
更改为 List
来避免日志。
如何解决出现警告的原因?
struct ContentView: View {
@State private var selectedDate: Date = Date()
var body: some View {
Form {
DatePicker("Date", selection: $selectedDate, displayedComponents: .date)
}
}
}
解决方法是使用 List
视图而不是 Form
。
这完全取决于您想在 Form
中放入什么。
出于演示目的,使用 List
,您的代码将如下所示:
struct ContentView: View {
@State private var selectedDate: Date = Date()
var body: some View {
List {
DatePicker("Date", selection: $selectedDate, displayedComponents: .date)
}
.listStyle(InsetGroupedListStyle())
}
}
上面给出了与使用 List
相同的视觉效果 (UI),并且没有显示警告。
因为您的 Form
一切正常,我真的不认为有必要将您的 Form
更改为 List
来避免日志。