报错的代码 struct CarInfo: View { @State var showAlert = false var body: some View { VStack{ List { Text("123") //此处报错 Argument passed to call that takes no arguments Text("123") Text("123") Text("123") Text("123") Text("123") Text("123") Text("123") Text("123") Text("123") Text("123") //但是 删除几个 Text 组件后 就没报错 怎么办? } } }
1
Sricecake 2020-01-20 15:40:34 +08:00
SwiftUI 一个视图层级不能超过 10 个子视图
|
4
zhentivip 2021-03-16 12:09:51 +08:00
1 、单独写 struct
2 、用 group 抱起来 推荐方案一 |