如何使用CosmicMind的“材质”窗格在导航栏下方添加标签栏

我能够做到这一点,但它像这样触摸状态栏

ios - 使用Material iOS在状态栏下方添加选项卡栏-LMLPHP

我希望它位于状态栏下方。

最佳答案

您可以使用以下代码,在StatusBar中添加20px Top(20)高度

fileprivate func prepareTabBar() {
    tabBar = TabBar()
    tabBar.delegate = self

    tabBar.dividerColor = Color.grey.lighten4
    tabBar.dividerAlignment = .bottom

    tabBar.lineColor = Color.indigo.base
    tabBar.lineAlignment = .bottom

    tabBar.backgroundColor = Color.grey.lighten3
    tabBar.buttons = buttons

    view.layout(tabBar).horizontally().top(20)
}

ios - 使用Material iOS在状态栏下方添加选项卡栏-LMLPHP

关于ios - 使用Material iOS在状态栏下方添加选项卡栏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44672056/

10-12 14:31