更改UITabBarController中选项卡的宽度以调整第六个选项卡

时间:2017-01-13 09:42:25

标签: ios swift uitabbarcontroller uitabbar

我需要标签栏控制器中的六个标签。当我添加第六个选项卡时,创建了更多选项卡,并且未显示第五个和第六个选项卡。如何减小项目的宽度,以便调整它以显示所有六个选项卡。

1 个答案:

答案 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
    } 
  }