我是 SwiftUI 的初学者
我最近通过 Youtube Lecture 学习 SwiftUI
在 TabView 部分,
TabView {
myView(titleText: "프로필", bgColor: Color.blue) // it's just View I made
.tabItem {
Image(systemName : "person.crop.circle.fill")
Text("프로필")
}.tag(2) // <- I'm wondering about this 'tag'
}
我想知道 tabItem 中的 'tag(_)' 做了什么
谢谢您的回答