TabView
다음 코드 를 사용하여 SwiftUI에서을 만들려고합니다 .
@State var selection = 0
var body: some View {
TabView(selection: $selection) {
DataGridPage(type: "media").tabItem {
Image(systemName: "photo.on.rectangle")
.imageScale(.large)
.foregroundColor(.yellow)
}
.tag(1)
DataGridPage(type: "files").tabItem {
Image(systemName: "doc.on.doc")
.imageScale(.large)
.foregroundColor(.yellow)
}
.tag(2)
}
}
하지만 오류가 발생했습니다 Cannot convert value of type 'Binding<Int>' to expected argument type 'Binding<_>'
. 변수 selection
가 정수이며 올바른 유형이지만 경고가 여전히 어떤 이유로 존재합니다.