在TabBar SwiftUI中更改选项卡选择颜色

时间:2019-08-21 21:01:44

标签: ios swiftui tabbar

我正在尝试更改TabBar中选定标签的颜色,但是没有任何效果。我可以通过编写

来更改TabBar backgroundColor
struct ContentView: View {
    init() {
        UITabBar.appearance().backgroundColor = UIColor.purple
    }
    var body: some View { 
    }
}

我们迅速设置tintColor,它的确会更改所选标签的颜色。但是,对于swiftUI,我需要做什么?

这是我的代码,

    TabView(selection: $selection) {
        AView()
            .tabItem {
                VStack {
                    Image(systemName: "bubble.left.and.bubble.right")
                    Text("A Tab")
                }
        }.tag(0)

        BView()
            .tabItem {
                VStack {
                    Image(systemName: "house")
                    Text("B Tab")
                }
        }.tag(1)

        CView()
            .tabItem {
                VStack {
                    Image(systemName: "circle.grid.3x3")
                    Text("C Tab")
                }
        }.tag(2)
    }

对此有任何帮助吗? 在此先感谢!

1 个答案:

答案 0 :(得分:5)

使用accentColorhttps://developer.apple.com/documentation/swiftui/tabview/3368073-accentcolor

TabView {
  // fill this out with your tabbed content
}
.accentColor(.orange)

enter image description here