我的应用程序是导航基础应用程序。在这个应用程序中,UIViewController有按钮事件。按下按钮触发(pushViewController)CalendarTableview。现在我需要将tabbar和tabitem添加到calendartableview。如何将Tabbar和tabitem添加到CalendarTableview。帮助我。
这是我的照片。 感谢。
答案 0 :(得分:2)
UINavigationController有一个内置的导航工具栏。检查the section in appples developer documentation,如果我理解您的问题,这应该会有所帮助。
答案 1 :(得分:1)
在 calendartableview_controller 的viewDidLoad()方法中,尝试以编程方式创建标签栏,然后将其作为子视图添加到calendartableview_controller的视图:< / p>
//create a tab bar controller in your calendartableview_controller
UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.title = @"My Tab Bar";
//assign child controllers to the tab bar controller
tabBarController.viewControllers = [NSArray arrayWithObjects:firstViewController, secondViewController, thirdViewController, nil];
//add it to your calendartableview_controller's view as a subview
[self.view addSubview:[tabBarController view]];