在iOS上使用Yalantis折叠标签条时遇到问题:
https://github.com/Yalantis/FoldingTabBar.iOS
我已经按照他们在github页面上说的做了,这意味着:
将故事板中的类设置为Yalantis自定义类
向AppDelegate类添加了Swift代码段
更改了Github页面的重要注释部分中的选项
将示例项目中的图标添加到我的项目中
但是我的标签栏是空白的(白色的,里面没有任何东西)
有人知道我遗漏了什么吗?
谢谢你

最佳答案

将这些代码行添加到选项卡栏的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
                                       )

你好像有白色的背景和白色的按钮混合在一起

10-06 04:31