嗨,我是 SwiftUI 新手,我想在我的 MainSceenView 的主体中显示 UITableView 我完全在其中创建了 UIViewController 类和 UITableView 但我不知道如何将其添加到我的 MainSceenViews 主体中。我收到此错误
Static method 'buildExpression' requires that 'UITableView' conform to 'View'
您可以使用List作为UItableView,这里是示例代码
struct CustomListView: View {
var body: some View {
List {
ForEach (0...10,id:\.self){_ in
CustomCell()
}
}
}
}
自定义单元格
struct CustomCell:View {
var body: some View {
Text("Hello World")
}
}
根据您的要求设计您的定制单元