Answer the question
In order to leave comments, you need to log in
How to navigate to TabBarController from Viewcontroller?
Got stuck with this problem:
There is a ViewController with an entry point. I want that when the button is pressed, the tab controller opens joxi.ru/4zANjVlHjnlaA9
I put the code on the button
- (IBAction)goAsGuest:(id)sender {
TabsController *tab = [[TabsController alloc] init];
[tab setModalPresentationStyle:UIModalPresentationFullScreen];
[tab setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
ReviewsViewController* vc1 = [[ReviewsViewController alloc] init];
NSArray* controllers = [NSArray arrayWithObjects:vc1, nil];
tab.viewControllers = controllers;
[self presentViewController:tab animated:YES completion:NULL];
}
Answer the question
In order to leave comments, you need to log in
Implemented using segue with the modal parameter from the button to the tab controller.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question