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的方法

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...