我需要标签栏控制器中的六个标签。当我添加第六个选项卡时,创建了更多选项卡,并且未显示第五个和第六个选项卡。如何减小项目的宽度,以便调整它以显示所有六个选项卡。
答案 0 :(得分:0)
//Swift #3
class TabBarViewController: UITabBarController, UITabBarControllerDelegate {
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
self.tabBar.itemWidth = your width
//(self.tabBar.frame.width) / (numberOfItems
}
}