UITabBarController选项卡模态演示-Swift2 OS

时间:2016-09-27 17:20:59

标签: ios swift2 uitabbarcontroller presentmodalviewcontroller

我有一个带有2个标签的tabBarController:tab1和tab2。我在tab1中有一个名为pressButton的按钮。按下时,它会自动切换到tab2。如何在切换标签时以模态方式显示tab2?

事情是我想在模态演示后在底部看到两个标签。文档说,模态演示将完全占据整个屏幕。我不希望模态隐藏底部tabBarController选项卡。我该怎么做?

@IBOutlet func pressButton(sender: UIButton){
   self.tabBarController!.selectedIndex = 1
}

1 个答案:

答案 0 :(得分:1)

要自定义标签栏,请使用以下链接

Customization of Tabbar using button

在按钮操作中,使用模态动画显示标签栏。

快乐编码......