私は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
は整数であることがわかります。これは正しいタイプですが、何らかの理由で警告が残っています。