我有一个基于表格的应用程序,并希望在底部添加一个标签栏,以在此表和其他视图之间切换。
msot无忧无虑的方法是什么?我可以只在表视图下面的选项卡视图控制器中连接吗?
谢谢,
马丁
答案 0 :(得分:1)
您实际上必须将视图控制器加载到UITabBarController中。因此,如果你有一个tableViewController,viewController1和viewController 2,你想要将所有这些添加到tabBarController。
UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.viewControllers:[NSArray arrayWithObjects:tableViewController, vc1, vc2];
[self.window addSubView:tabBarController.view];
[self.window makeKeyAndVisible];