我希望在所有ViewControllers中都有tabBar.我已经实现了SWRevealViewController,它有两个链接的视图控制器,一个是TabBarController,另一个是TableViewController我希望在我的所有ViewControllers中都有与TableViewController相同的tabBar.
解决方法
I want to have tabBar in all my ViewControllers. I have implemented
the SWRevealViewController,which have two view controllers linked one
is TabBarController and another is TableViewController I wants to have
the same tabBar in all my ViewControllers that Segues from
TableViewController.
您可以像这样做一些调整,创建自定义委托并将TableViewController和TabBarController的委托设置为SWRevealViewController.现在第一次让我们说你打开TableViewController,当点击任何单元格然后只调用应该在SWRevealViewController类中执行的委托方法,然后在该类中执行segue,这应该打开TabBarController,当再次单击TabBarController的后退按钮时调用委托应在SWRevealViewController类内执行并执行segue以打开TableViewController的方法