iOS 的 yalantis 标签栏
yalantis tabbar for iOS
我在为 iOS 使用 Yalantis 折叠标签栏时遇到问题:
https://github.com/Yalantis/FoldingTabBar.iOS
我已经按照他们在 github 页面上所说的去做了,这意味着:
- 将 Storyboard 中的 classes 设置为 Yalantis 自定义 classes
- 向 AppDelegate 添加了 Swift 代码片段 class
- 更改了以下部分的选项:Github 页面的重要说明
- 将示例项目中的图标添加到我的项目中
但是我的标签栏是空白的(白色,里面什么都没有)
有人知道我在这里遗漏了什么吗?
谢谢
将这些代码行添加到 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
)
您的背景似乎是白色,而白色按钮混合了一种颜色
我在为 iOS 使用 Yalantis 折叠标签栏时遇到问题: https://github.com/Yalantis/FoldingTabBar.iOS
我已经按照他们在 github 页面上所说的去做了,这意味着:
- 将 Storyboard 中的 classes 设置为 Yalantis 自定义 classes
- 向 AppDelegate 添加了 Swift 代码片段 class
- 更改了以下部分的选项:Github 页面的重要说明
- 将示例项目中的图标添加到我的项目中
但是我的标签栏是空白的(白色,里面什么都没有)
有人知道我在这里遗漏了什么吗? 谢谢
将这些代码行添加到 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
)
您的背景似乎是白色,而白色按钮混合了一种颜色