我正在尝试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
是整数,这是正确的类型,但是由于某些原因,警告仍然存在。