I would like to have a UIViewController with a UIButton. After the user has pressed the button, the UITabBarController should appear with deferent tabs.
UIViewController *view1 = [[FirstViewController alloc]
UIViewController *view2 = [[SecondViewController alloc]
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = @[view1, view2];
How can I show a view before the UITabBarController?
Thanks