ios – 如何在从SlideMenuViewController实例化的ViewControllers中打开TabBarController

前端之家收集整理的这篇文章主要介绍了ios – 如何在从SlideMenuViewController实例化的ViewControllers中打开TabBarController前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望在所有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的方法

原文链接:https://www.f2er.com/iOS/331375.html

猜你在找的iOS相关文章