当我使用 init(检查源代码:第 10 行)时,出现以下错误。
从初始化程序返回而不初始化所有存储的属性
如果我使用UITableView.appearance().backgroundColor = .clear
它didFinishLaunchingWithOptions
工作正常。但应该是这样知道的。我需要单独在一个控制器中更改列表的颜色。
这是我的代码:
import UIKit
import SwiftUI
struct PortalSetupView: View {
@State var title = ""
@Binding var isNavigationBarHidden: Bool
@State var name: String = ""
let datasource: [String] = ["Hi", "Hello"]
init() {
UITableView.appearance().backgroundColor = .clear // tableview background
UITableViewCell.appearance().backgroundColor = .clear // cell background
}
var body: some View {
VStack(alignment:.leading){
Text("Hey")
.font(.system(size: 17))
.padding(.init(top: 10, leading: 0, bottom: 30, trailing: 0))
TextField("Hey there", text: $name)
Divider().padding(.init(top: 0, leading: 0, bottom: 20, trailing: 0))
List{
Section(header: Text("My header").font(.system(size: 15))) {
ForEach(datasource, id: \.self) { item in
RegionView(region: item)
}
}
}.background(Color.yellow)
.listStyle(GroupedListStyle())
Button(action: {
}){
Text("My Button").foregroundColor(.white)
.frame(minWidth: 0, maxWidth: .infinity)
}.padding()
.background(Color("LightRed"))
.cornerRadius(10)
}
.navigationBarTitle("My Navigation")
.navigationBarBackButtonHidden(true)
.onAppear {
self.isNavigationBarHidden = false
}.padding([.leading, .trailing], 18)
}
}
struct RegionView: View {
var region: String
var body: some View {
Text(region)
}
}