我正在开发一个快速的应用程序。我需要在单击表内的项目时打开一个新视图。很好并且可以正常工作,但是选项卡栏的底部按钮仍然存在。我该怎么办才能消失?
用于调用下一个屏幕的代码。我已经测试了一些不同的方法,但这是唯一可行的方法。我认为这不是这里的问题。
func irParaMarcacoes(nome:String){
let next:ViewMarcacaoController = storyboard?.instantiateViewControllerWithIdentifier("ViewMarcacaoController") as! ViewMarcacaoController
next.projNome = nome;
self.navigationController?.pushViewController(next, animated: true)
}
This is what I have, the first screen
This is what I want the tap bar to disappear
感谢您的关注。
*使用XCode 7.3
最佳答案
您可以隐藏导航栏。
将此代码写在ViewMarcacaoController
override func viewDidLoad() {
super.viewDidLoad()
self.navigationController?.navigationBarHidden = true
}
关于ios - 启动View Controller并删除Tap栏。 swift ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37050427/