我正在尝试在 Xcode 中创建一个简单的主/详细信息应用程序。
我希望详细视图是
struct EditingView: View
{
var body: some View {
var mainVertical: VStack = VStack() //error here
{
var previewArea: HStack = HStack()
{
var editorButton: Button = Button()
//the same with return editorButton
// I have to add other controls, like a WKWebView
}
return previewArea
//this is a simple version, layout will have other stacks with controls inside
}
return mainVertical
}
}
但我明白了
Generic parameter 'Content' could not be inferred
IDE 让我修复,但如果我这样做,它会编写一个我必须填充的泛型类型,但随后会出现其他错误,如果我放置 AnyView o TupleView。
我希望它推断一切,它无法理解的错误是什么?