如何在View SwiftUI中显示UITableView

问题描述 投票:0回答:1

嗨,我是 SwiftUI 新手,我想在我的 MainSceenView 的主体中显示 UITableView 我完全在其中创建了 UIViewController 类和 UITableView 但我不知道如何将其添加到我的 MainSceenViews 主体中。我收到此错误

Static method 'buildExpression' requires that 'UITableView' conform to 'View'

ios swift iphone xcode swiftui
1个回答
0
投票

您可以使用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")
}

}

根据您的要求设计您的定制单元

© www.soinside.com 2019 - 2024. All rights reserved.