适用于iOS的{yalantis标签栏

时间:2016-07-07 03:35:50

标签: ios swift tabbar

我在使用适用于iOS的Yalantis Folding Tabbar时遇到问题: https://github.com/Yalantis/FoldingTabBar.iOS

我已经完成了他们在github页面上所说的内容,这意味着:

  • 将Storyboard中的类设置为Yalantis自定义类
  • 将Swift Code Snippet添加到AppDelegate类
  • 更改了以下部分的选项:Github页面的重要说明
  • 从示例项目添加图标到我的项目

我的标签栏是空白的(白色,没有任何内容)

有没有人提示我在这里失踪了什么? 谢谢

1 个答案:

答案 0 :(得分:0)

将这些代码行添加到TabBar的appDelegate部分

tabBarController.tabBarView.backgroundColor = UIColor(
                                                  red: 94.0/255.0,
                                                  green: 91.0/255.0,
                                                  blue: 149.0/255.0,
                                                  alpha: 1
                                              )

tabBarController.tabBarView.tabBarColor = UIColor(
                                              red: 72.0/255.0,
                                              green: 211.0/255.0,
                                              blue: 178.0/255.0,
                                              alpha: 1
                                          )

tabBarController.tabBarView.dotColor = UIColor(
                                           red: 94.0/255.0,
                                           green: 91.0/255.0,
                                           blue: 149.0/255.0,
                                           alpha: 1
                                       )

似乎你有白色背景和白色按钮混合颜色